Category: Kafka
🚀 Topics, Partitions, and Offsets in Kafka — How do they work?
Natan Ferreira- 0
- 266
Kafka is currently one of the most widely used streaming platforms in the world.But to use it effectively, you need to master three essential concepts: These three elements form the foundation of how Kafka’s entire architecture works. Let’s break each one down with simple examples, real-world scenarios, and analogies. 1. What Is a Topic in…
Read More
How to use Kafka with Quarkus?
Natan Ferreira- 0
- 805
Apache Kafka is one of the most popular solutions for large-scale distributed event streaming. Its ability to handle high volumes of messages makes it ideal for event-driven architectures. In this post, you’ll learn how to use Kafka with Quarkus, a modern framework for cloud-native Java applications. Best of all: Quarkus’ Kafka support also works with…
Read More
How to start Kafka using Docker?
Natan Ferreira- 0
- 487
It’s possible to use Kafka on various operating systems, but here we’ll use Docker on Ubuntu Linux. We need Docker Desktop installed in order to proceed. You can follow this tutorial to install it:👉 tutorial . Go to Docker Hub and in the search bar, look for “apache kafka”. This will allow us to download…
Read More