I am using Kafka 2.0.0.
In the __consumer_offset topic, the most of partitions are 30MB, but some partitions are very big. For example: 1 partition is 15GB, another partition is 250GB, etc.
What could be the problem?
I am using Kafka 2.0.0.
In the __consumer_offset topic, the most of partitions are 30MB, but some partitions are very big. For example: 1 partition is 15GB, another partition is 250GB, etc.
What could be the problem?
The topic __consumer_offsets
stores the latest committed offset for each subscribed TopicPartition of a Kafka Consumer Group. In this topic the ConsumerGroup servers as the key.
Apparently, your ConsumerGroups which fall into the same partition (applying the hash(key) % #partitions logic) are much more active (consuming more messages more frequently) compared to other Consumer Groups.