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

kafka常用命令

时间:2018-03-06 21:41:47      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:sum   boot   发送数据   tar   factor   lis   列表   --   top   

启动Zookeeper
/opt/kafka/kafka_2.10-0.10.2.1/bin/zookeeper-server-start.sh /opt/kafka/kafka_2.10-0.10.2.1/config/zookeeper.properties &

启动kafka
/opt/kafka/kafka_2.10-0.10.2.1/bin//kafka-server-start.sh -daemon /opt/kafka/kafka_2.10-0.10.2.1/config/server.properties &

创建topic
./bin/kafka-topics.sh --create --zookeeper 10.xxx.xxx.149:2181, 10.xxx.xxx.182:2181, 10:xxx.xxx.190:2181 --replication-factor 3 --partitions 3 --topic test

查询当前的topic列表
/opt/kafka/kafka_2.10-0.10.2.1/bin/kafka-topics.sh --list --zookeeper localhost:2181

发送数据
./bin/kafka-console-producer.sh --broker-list 10.xxx.xxx.149:9092, 10.xxx.xxx.182:9092, 10:xxx.xxx.190:9092 --topic test

消费数据
./bin/kafka-console-consumer.sh --zookeeper localhost:2181 --from-beginning --topic test

./bin/kafka-console-consumer.sh --bootstrap-server 10.xxx.xxx.149:9092, 10.xxx.xxx.182:9092, 10:xxx.xxx.190:9092 --from-beginning --topic test

kafka常用命令

标签:sum   boot   发送数据   tar   factor   lis   列表   --   top   

原文地址:https://www.cnblogs.com/woniu4/p/8516349.html

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