life is too short for a diary



Posts Tagged: kafka (Page 2)

How to Listen to a Kafka Consumer in Spring Boot (Reactive & Non-Reactive)

Listening to a kafka consumer varies in both servlet and reactive application...

Continue reading → java spring boot kafka



Using kcat with Kafka and SASL Authentication

kcat (formerly known as kafkacat) is a versatile command-line tool for Apache Kafka. It allows you to consume and produce Kafka messages and interact with Kafka clusters efficiently. This guide will help you set up and use kcat with SASL authentication to consume and produce messages...

Continue reading → kafka



Understanding Kafka Deserializer

In Kafka, a deserializer is responsible for converting byte arrays from kafka topic into Java Objects. Kafka provides default deserializer for standard data types like strings and integers, but you can also implement custom deserializer for complex types...

Continue reading → kafka