| by Arround The Web

Apache Kafka Consumer in Rust

Comprehensive tutorial on how to quickly set up the basic Kafka producer and consumer applications using the Rust programming language along with examples.

Share Button
Read More
| by Arround The Web

Get the Metrics for Consumer in Apache Kafka Consumer

Tutorial on how to use a simple Python code to gather the metrics of a Kafka consumer in JSON format monitor and diagnose the issues with your Kafka consumer.

Share Button
Read More
| by Arround The Web

Apache Kafka Consumer Example in NodeJS

Tutorial on how to set up a basic consumer and producer application for Apache Kafka using Node.JS as the most widely adopted JavaScript runtime environments.

Share Button
Read More
| by Arround The Web

Apache Kafka Consumer Example in Golang

Comprehensive tutorial on how to create a simple Kafka producer and consumer in Golang using the confluent-kafka-go library along with practical examples.

Share Button
Read More
| by Arround The Web

Apache Kafka Consumer Example in C

Practical tutorial on the basics of how to create a Kafka consumer and producer application using the librdkafka library in the C programming language.

Share Button
Read More
| by Arround The Web

Apache Kafka Consumer Example in C#

Comprehensive tutorial on how we can set up a Kafka producer and consumer application in C# using the .NET framework through the Confluent.Kafka package.

Share Button
Read More
| by Arround The Web

Apache Kafka Consumer Example from CLI

Comprehensive tutorial on how to use the Kafka CLI tools to create a new topic, produce messages, subscribe to a Kafka topic, and read messages from it.

Share Button
Read More
| by Arround The Web

Apache Kafka Auto Offset Reset

Tutorial on the auto offset reset in the Kafka configuration file to determine the behavior taken by the consumer group once the offset information is corrupt.

Share Button
Read More
| by Arround The Web

How to Add Messages to an Apache Kafka Topic

Tutorial on how to write and add messages to a Kafka topic using the provided CLI tools, the commands on localhost and the default port for the Kafka broker.

Share Button
Read More
| by Arround The Web

How to Convert a C String into its Escaped Version in C Programming?

Converting a string into its escaped version is done by iterating through each character of the string and adding a backslash before any special characters.

Share Button
Read More
| by Arround The Web

Apache Kafka Producer Example Using CLI

Working with the Kafka Producer CLI tool to write the messages to an existing Kafka topic by learning the various components of making up a Kafka producer.

Share Button
Read More
| by Arround The Web

Apache Kafka Producer Example from CLI

How to create a new Kafka topic using the kafka-topics.sh utility and how to write the messages to a Kafka topic using the kafka-console-producer.sh utility.

Share Button
Read More
| by Arround The Web

Apache Kafka Offset Example Usage

Guide on the use of Kafka consumer offsets in consumer applications, how they work, and the role of Kafka consumer group offsets in Kafka message consumption.

Share Button
Read More
| by Arround The Web

Apache Kafka Consumer with Protobuf

The basics of setting up a simple Kafka producer and consumer application to write and read the messages to a Kafka cluster using the Protocol Buffers.

Share Button
Read More
| by Arround The Web

Apache Kafka Consumer Poll Operation

Practical tutorial on what a Kafka consumer poll operation is, what it does, and how it works, and how a Kafka consumer poll operation behaves internally.

Share Button
Read More
| by Arround The Web

Apache Kafka Consumer Seek to Beginning and Seek to End Features

Comprehensive tutorial on what the Apache Kafka “seek to beginning” and “seek to end” features are, what they do, and how they work in a Kafka consumer.

Share Button
Read More
| by Arround The Web

How a Consumer Joins a Group ID in Apache Kafka

Practical tutorial on the methods of creating a consumer group in Apache Kafka and how to specify the group ID using the “group. id” configuration property.

Share Button
Read More
| by Arround The Web

Get the Set of Partitions that Are Currently Assigned to this Consumer in Apache Kafka Consumer

Comprehensive tutorial on how you can use the confluent-kafka Python package to get the list of partitions that is currently assigned to a specific consumer.

Share Button
Read More
| by Arround The Web

Get the First Offset for the Given Partitions in Apache Kafka Consumer

Practical tutorial on how to build a simple Python script that fetches the earliest or first offset from a Kafka partition using the confluent-kafka package.

Share Button
Read More
| by Arround The Web

Get the End Offsets for the Given Partitions in Apache Kafka Consumer

Comprehensive tutorial on how to use the Python confluent-kafka package to fetch the latest or end offset in a given partition in Apache Kafka consumer.

Share Button
Read More