如何管理Kafka群组的到期日

时间:2017-08-04 21:53:02

标签: stream apache-kafka offset

我试图通过删除它并让我的脚本稍后重新创建它来重置消费者配置,但是我遇到了一个关于新消费者无法删除的错误。

kafka@kafka-0:~$ ./bin/kafka-consumer-groups.sh --bootstrap kafka-0:9092 --delete --group etl
Option '[delete]' is only valid with '[zookeeper]'. Note that there's no need to delete group metadata for the new consumer as the group is deleted when the last committed offset for that group expires.

现在我想知道,消息配置选项的名称是什么,它控制此错误消息的到期时间?

1 个答案:

答案 0 :(得分:2)

配置实际上是一个代理配置,用于确定保持提交偏移的时间长度:offsets.retention.minutes。您可能还需要调整offsets.retention.check.interval.ms,具体取决于您选择的保留值。 (reference