bin / kafka-topics.sh --zookeeper本地主机:2181-描述:50主题:列出了__consumer_offsets。这些是默认设置吗?

时间:2019-02-09 18:39:13

标签: apache-kafka

我正在使用Mac,并使用brew install zookeeper和Kafka。

我正在按照说明“ Kafka,流式快速入门” http://kafka.apache.org/21/documentation/streams/quickstart#quickstart_streams_prepare

bin/kafka-topics.sh --list --zookeeper localhost:2181

我列出了这些主题

__consumer_offsets
streams-plaintext-input
streams-wordcount-output
test

但是

bin/kafka-topics.sh --zookeeper localhost:2181 --describe

我有50个__consumer_offsets列为

Topic: __consumer_offsets   Partition: 0    Leader: 0   Replicas: 0 Isr: 0
...
Topic: __consumer_offsets   Partition: 49   Leader: 0   Replicas: 0 Isr: 0
...

我只尝试了Kafka快速入门和Kafka流式快速入门。我不知道这50个cousmer_offset来自何处。默认情况下是否设置了这50个__consumer_offsets主题?

但是在快速入门说明中,它并没有告诉我在运行时会看到这些__consumer_offsets

bin/kafka-topics.sh --zookeeper localhost:2181 --describe

谢谢!

0 个答案:

没有答案