1.

what are the different components of Kafka?

Answer»

There are some important components of any Kafka architecture. PLEASE find below an overview of components:

  1. Topic: These are the message category which is DECLARED and defined in Kafka.
  2. Producer: The producers are the system which is responsible for PUBLISHING messages to the specific topic defined in Kafka.
  3. Consumer: The system subscribed to different topic comes into this category.
  4. Kafka cluster: A group of server working in fault-tolerant mode.
  5. Broker: The system having the capability of storing published
  6. Consumer Group: The consumer systems which read data from a similar topic by leveraging
  7. PARTITION: The topic can be STORED in a different partition and consumer from one consumer group can read data from a specific partition of the topic.
  8. ZooKeeper: This system facilitates cluster topology.

 The below diagram explains Producer, Topic, Partition consumer & consumer group.



Discussion

No Comment Found