当前位置:   article > 正文

【Kafka】查看kafka的topic数据

查看kafka的topic数据
  • 启动kafka:

  • ./kafka-server-start.sh ../config/server.properties 1>/dev/null 2>&1 &     # kafka-server-start.sh 脚本在 kafka_2.12-2.2.0/bin路径下
    
    • 1
  • 查看已创建的topic列表:

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

  • 查看对应topic的描述信息:

  • ./kafka-topics.sh --describe --zookeeper xx.x.xxx.xxx:2181 --topic xxxxx.xx.xxxxx.xxx     # --zookeeper为zookeeperIP, --topic为topic名称 
    
    • 1
  • 消费消息:

  • ./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic xxxxx.xx.xxxxx.xxx --from-beginning    # 若没有任何返回或没有响应,则该topic中没有数据内容;否则就是有数据
    
    • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/712425
推荐阅读
相关标签
  

闽ICP备14008679号