console-consumer.sh缺少--group参数?

kr98yfug  于 2021-06-08  发布在  Kafka
关注(0)|答案(2)|浏览(327)

你如何指出你想从哪个群体消费?
命令不知道“-group”是什么意思,帮助也没有显示任何与您要从中消费的组相关的参数。


# where is the "--group mygroup" arg below?

kafka-console-consumer.sh --zookeeper localhost:2181 --topic mytopic
r1zk6ea1

r1zk6ea11#

你可以用 --consumer-property group.id=XXXX 指定组id。

2q5ifsrm

2q5ifsrm2#

您还可以使用消费者属性文件,如kafka提供的文件( config/consumer.properties )并指定 group.id 在那里。属性文件在命令行中使用 --consumer.config 参数:

kafka-console-consumer.sh --zookeeper localhost:2181 --topic mytopic --consumer.config config/consumer.properties

相关问题