为什么Kafka 0.10 kafka-console-consumer.sh缺少--group参数?

时间:2017-06-28 03:42:20

标签: apache-kafka

如何指出您想要消费的群组?

该命令不知道“ - group”的含义,并且该帮助不会显示任何似乎适合您要使用的组的参数。

# where is the "--group mygroup" arg below?
kafka-console-consumer.sh --zookeeper localhost:2181 --topic mytopic

2 个答案:

答案 0 :(得分:3)

您可以使用--consumer-property group.id=XXXX指定组ID。

答案 1 :(得分:1)

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

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