你如何指出你想从哪个群体消费?命令不知道“-group”是什么意思,帮助也没有显示任何与您要从中消费的组相关的参数。
# where is the "--group mygroup" arg below? kafka-console-consumer.sh --zookeeper localhost:2181 --topic mytopic
r1zk6ea11#
你可以用 --consumer-property group.id=XXXX 指定组id。
--consumer-property group.id=XXXX
2q5ifsrm2#
您还可以使用消费者属性文件,如kafka提供的文件( config/consumer.properties )并指定 group.id 在那里。属性文件在命令行中使用 --consumer.config 参数:
config/consumer.properties
group.id
--consumer.config
kafka-console-consumer.sh --zookeeper localhost:2181 --topic mytopic --consumer.config config/consumer.properties
2条答案
按热度按时间r1zk6ea11#
你可以用
--consumer-property group.id=XXXX
指定组id。2q5ifsrm2#
您还可以使用消费者属性文件,如kafka提供的文件(
config/consumer.properties
)并指定group.id
在那里。属性文件在命令行中使用--consumer.config
参数: