Kafka

In this tutorial, you will learn about the retryable and non-retryable exceptions in Apache Kafka. You’ll learn how to create your own custom exceptions and how to register then with Kafka’s DefaultErrorHandler object. To demonstrate how retryable and not retryable exceptions work, I will use the Kafka Consumer Spring Boot Microservice, which I created earlier.…

Read More Retryable and Not Retryable Exceptions in Apache Kafka

In this guide, you will learn more about Kafka Topic, the core structure for data within Kafka. You will learn how to create, manage, and utilize Kafka Topics effectively. Each step includes practical examples and straightforward explanations, ensuring a clear understanding. As you progress, you’ll gain essential skills and knowledge, focusing solely on Kafka Topics.…

Read More Apache Kafka Topic: A Comprehensive Guide

In this lesson, you will learn how to consume messages or how to read messages from Apache Kafka topic using Kafka Consumer Command Line Interface(CLI). To learn how to produce or send messages to Kafka topic, please read the following tutorial: Kafka Producer CLI – Produce/Send message to Kafka topic. Consuming Messages From the Beginning…

Read More Kafka Consumer CLI – Consume/Read from Kafka Topic

In this tutorial, you will learn how to delete Apache Kafka topics using the Kafka Command-line Interface(CLI). Before Deleting Kafka Topic Before deleting a Kafka topic, there are a few things you should keep in mind: Deleting a topic is permanent: Once you delete it, it is gone forever. There is no way to undo…

Read More Delete Kafka Topic Tutorial