Search results
Learn what a Kafka topic is, how it works as a log of events, and how to use it as a developer. This course covers the basics of Kafka topics, their durability, immutability, and replication.
- How to Choose The Number of Topics/Partitions in a Kafka Cluster
Note For the latest, check out the blog posts Apache Kafka®...
- Ecosystem
Kafka Ecosystem. If all you had were brokers managing...
- Brokers
Kafka Brokers. So far we have talked about events, topics,...
- Producers
Kafka Producers. The API surface of the producer library is...
- Consumers
Put differently, consumers need to scale. In Kafka, scaling...
- Introduction to Apache Kafka Partitions
Kafka Partitioning. If a topic were constrained to live...
- How to Choose The Number of Topics/Partitions in a Kafka Cluster
11 maj 2024 · Learn how to create, configure, and consume Kafka topics and partitions using Spring and Java. Topics are durable log files that store events in order, while partitions are fractions of topics that improve scalability.
Apache Kafka® provides a suite of command-line interface (CLI) tools that can be accessed from the /bin directory after downloading and extracting the Kafka files. These tools offer a range of capabilities, including starting and stopping Kafka, managing topics, and handling partitions.
Learn what event streaming is and how Kafka can help you implement it end-to-end with a single solution. Topics are the main concept for organizing and storing events in Kafka.
A topic is a log of events that Kafka organizes and processes at scale. Learn how topics are created, partitioned, replicated, and consumed in this beginner's guide to Kafka.
25 cze 2016 · Kafka uses the Topic conception which comes to bringing order into the message flow. To balance the load, a topic may be divided into multiple partitions and replicated across brokers. Partitions are ordered, immutable sequences of messages that’s continually appended, i.e., a commit log.
Learn what a Kafka topic is, how events are formatted and moved within a topic, and how topics are replicated across the cluster. This web page also provides related videos, podcasts, and links to other Kafka concepts.