+1 vote
in Kafka Premiera Ola by
What does follower and leader in Kafka mean?

1 Answer

0 votes
by

Partitions are created in Kafka based on consumer groups and offset. One server in the partition serves as the leader, and one or more servers act as a follower. The leader assigns itself tasks that read and write partition requests. Followers follow the leader and replicate what is being told.

...