What is the difference in Kafka between a Consumer Group Coordinator and a Consumer Group Leader?

Jeff Widman picture Jeff Widman · Feb 3, 2017 · Viewed 12.4k times · Source

I see references to Kafka Consumer Group Coordinators and Consumer Group Leaders...

  1. What is the difference?

  2. What is the benefit from separating group management into two different sets of responsibilities?

Answer

Yogesh Gupta picture Yogesh Gupta · Feb 3, 2017

The consumer group coordinator is one of the brokers while the group leader is one of the consumer in a consumer group.

The group coordinator is nothing but one of the brokers which receives heartbeats (or polling for messages) from all consumers of a consumer group. Every consumer group has a group coordinator. If a consumer stops sending heartbeats, the coordinator will trigger a rebalance.

From the "Kafka The Definitive Guide" [Narkhede, Shapira & Palino, 2017]:

When a consumer wants to join a consumer group, it sends a JoinGroup request to the group coordinator. The first consumer to join the group becomes the group leader. The leader receives a list of all consumers in the group from the group coordinator (this will include all consumers that sent a heartbeat recently and are therefore considered alive) and it is responsible for assigning a subset of partitions to each consumer. It uses an implementation of the PartitionAssignor interface to decide which partitions should be handled by which consumer.

[...] After deciding on the partition assignment, the consumer leader sends the list of assignments to the GroupCoordinator which sends this information to all the consumers. Each consumer only sees his own assignment - the leader is the only client process that has the full list of consumers in the group and their assignments. This process repeats every time a rebalance happens.