1.

What is a Partition?

Answer»

KAFKA topic is shared into the partitions, which contains messages in an unmodifiable sequence.

  • Partition is a logical grouping of data.
  • Partitions allow you to parallelize a topic by splitting the data in a topic across multiple brokers.  
  • There are ONE or more than one partition can GROUP in topic.
  • Partition allow to parallelize the topic by splitting a data in a multiple topic across the multiple cluster. 
  • Each partition has an identifier called offset.
  • Each partition can be placed on a separate machine to allow for multiple CONSUMER to read the topic PARALLEL



Discussion

No Comment Found