Kafka

Kafka Consumer in Python

A Kafka consumer is an application that reads the messages from a Kafka topic and then processes them. we will create a Kafka consumer in Python. Prerequisites Install Python Dependencies…

Kafka consumer Lag

Kafka is a messaging queue comprising the Kafka broker, producers, and consumers. Producers publish messages to the broker and consumers consume the messages from the broker. Sometimes in the production…

Kafka Python Producer

We will create a Kafka producer in Python and publish some messages to the Kafka topic. Prerequisites Install Python dependencies we need to install two important Python modules that will…

Install Kafka CLI tools

Kafka CLI tools is a command line interface used to interact with the Kafka server and get different types of information like topic details, consumer lag, offset reset information, etc.…