美文网首页
Kafka 常用shell命令

Kafka 常用shell命令

作者: shaun_x | 来源:发表于2018-04-04 16:17 被阅读0次

    查看所有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
    

    相关文章

      网友评论

          本文标题:Kafka 常用shell命令

          本文链接:https://www.haomeiwen.com/subject/yxzkhftx.html