Kafka consumer stuck in (Re-)joining group

后端 未结 1 506
有刺的猬
有刺的猬 2021-02-06 07:26

Whats the default behavior of kafka (version 0.10) consumer if it tries to rejoin the consumer group. I am using a single consumer for a consumer group but it seems like it got

相关标签:
1条回答
  • 2021-02-06 08:22

    If you're gonna to have only one consumer instance in a group, then use the consumer with manual assignment strategy. (Simple Consumer).

    Manual topic assignment does not use the consumer's group management functionality so heart beats are not required.

    0 讨论(0)
提交回复
热议问题