Q&A
Ask and answer questions to make information more available to wider audiences.
Demetrius Chanc @chancdemetrius   11, Jul 2023 12:00 AM
components of Kafka
What are the different components of Kafka?
answers 1
 
Answer 1
Corey Aniston @anistoncorey   13, Jul 2023 05:03 PM
There are some important components of any Kafka architecture.

Topic: These are the message category which is declared and defined in Kafka.
Producer: The producers are the system which is responsible for publishing messages to the specific topic defined in Kafka.
Consumer: The system subscribed to different topic comes into this category.
Kafka cluster: A group of server working in fault-tolerant mode.
Broker: The system having the capability of storing published
Consumer Group: The consumer systems which read data from a similar topic by leveraging
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.
ZooKeeper: This system facilitates cluster topology.