YSYuvraj Singh Jadoninblog.yuvraj.tech·Mar 14, 2025 · 10 min readLearning Kafka - Real World ExampleNow that we understand the basics of Kafka producers and consumers, let's build a more realistic example that shows how Kafka can be used in a real-world scenario. We'll create a simple order processing system with these components: Order Service: C...00
YSYuvraj Singh Jadoninblog.yuvraj.tech·Mar 14, 2025 · 6 min readLearning Kafka - Kafka ConsumersNow that we've created a producer that sends messages to Kafka, let's create a consumer that reads those messages. A consumer is an application that subscribes to Kafka topics and processes the messages. Setting Up the Project First, let's set up our...00
YSYuvraj Singh Jadoninblog.yuvraj.tech·Mar 14, 2025 · 5 min readLearning Kafka - Kafka ProducersNow that we understand the basic concepts of Kafka, let's create our first producer. A producer is an application that sends messages to Kafka topics. Setting Up the Project First, let's set up our Node.js project: Create a package.json file in the ...00
YSYuvraj Singh Jadoninblog.yuvraj.tech·Mar 14, 2025 · 4 min readLearning Kafka - Kafka FundamentalsKafka Basic Concepts Now that we have Kafka running, let's understand the key concepts that make Kafka work. I'll explain these in simple terms without jargon. The Big Picture Kafka is a system that lets different parts of your application talk to ea...00
YSYuvraj Singh Jadoninblog.yuvraj.tech·Mar 14, 2025 · 3 min readLearning Kafka: Set UpSetting Up Kafka Before we can start using Kafka, we need to set it up on your computer. The easiest way to do this is using Docker, which lets us run Kafka without installing it directly on your system. What is Docker? Docker is like a lightweight v...00