码迷,mamicode.com
首页 > 其他好文 > 详细

kafka常用指令

时间:2020-07-31 18:03:33      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:tor   host   producer   enable   常用指令   生产   bootstra   create   ==   

查看消费组详情:
./bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group test-consumer-group
查看topic详情:
./bin/kafka-topics.sh --topic mytopic --describe --bootstrap-server localhost:9092
创建topic:
bin/kafka-topics.sh --zookeeper localhost:2181 --create --topic mytopic --partitions 10 --replication-factor 3
查看topic详情:
bin/kafka-topics.sh --zookeeper localhost:2181 --desc --topic mytopic 
修改partition数量:
bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --partitions 10
删除topic:
server.properties ==> delete.topic.enable=true
bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic mytopic 
创建终端生产者:
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic mytopic 
创建终端消费者:
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic mytopic 

kafka常用指令

标签:tor   host   producer   enable   常用指令   生产   bootstra   create   ==   

原文地址:https://www.cnblogs.com/cuiyuanhao/p/13410418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!