Zero to Hero — Master Kafka Tutorial 1 (Basic Theory)

Y Tech
3 min readOct 14, 2020

This is the first tutorial of this series, which covers the basic concepts of Kafka

Basic Concept — Data Topics

  1. Topic: A particular stream of data, identified by the topic name.
  2. Partition: Topic splits into partitions; Each partition is a queue of messages.
  3. Offset: The…

--

--