当最早重置kafka消费者偏移时,它会使某些分区保留偏移量> 0
$ kafka-consumer-groups.sh --bootstrap-server 127.0.0.1:9092 --group group1 --topic topic1 --reset-offsets --to-earliest --execute
节目:
TOPIC PARTITION NEW-OFFSET
topic1 4 0
topic1 1 6153734
topic1 3 0
topic1 2 0
topic1 0 0
为什么分区1也没有0?
答案 0 :(得分:1)
问题是最早的抵消是真正的6153734
使用--reset-offsets --to-offset 0
输出
WARN New offset (0) is lower than earliest offset. Value will be set to 6153734 (kafka.admin.ConsumerGroupCommand$)