# 查看所有消费组
kafka-consumer-groups.sh --bootstrap-server localhost:9092 --list
# 查看某个消费组的offset情况
kafka-consumer-groups.sh --bootstrap-server localhost:9092 --group xxx --describe
# 创建topic
kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 3 --partitions 3 --topic test
网友评论