查看所有Topic信息
bin/kafka-topics.sh --zookeeper localhost:2181 --list
产看单个Topic信息
bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic xxx
查看所有正在连接的Consumer信息
bin/kafka-consumer-groups.sh --zookeeper localhost:2181 --list
bin/kafka-consumer-groups.sh --new-consumer --bootstrap-server localhost:9092 --list
查看单个Consumer信息
bin/kafka-consumer-groups.sh --zookeeper localhost:2181 --describe --group BrowseConsumer
bin/kafka-consumer-groups.sh --new-consumer --bootstrap-server localhost:9092 --describe --group BrowseConsumer
重头开始消费某个Topic
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --from-beginning --topic xxx
bin/kafka-console-consumer.sh --new-consumer --bootstrap-server localhost:9092 --from-beginning --topic xxx
查看某个Topic所在的节点信息
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic xxx
网友评论