我使用的是最新版本的Kafka 1.1.0
使用命令:
./kafka-consumer-groups.sh --bootstrap-server localhost:9093 --describe --group notifications-service-group
然后我尝试为主题“通知”(分区4)更改偏移量:
./kafka-consumer-groups.sh --bootstrap-server localhost:9093 --group notifications-service-group --reset-offsets --topic notification:4 --to-offset 229400
我看到错误:
WARN新偏移量(229400)高于主题分区通知4的最新偏移量。值将设置为0(kafka.admin.ConsumerGroupCommand $)
我尝试使用1到229400之间的任何数字,并得到相同的错误。
什么是该错误以及如何解决?
答案 0 :(得分:0)
在用于更新偏移量的命令中,您将主题设置为notification
,但主题名称为notifications
,带有' s '。因此notification:4
-> notifications:4
应该可以工作。