kafka常用命令

Posted woniu4

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kafka常用命令相关的知识,希望对你有一定的参考价值。

启动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常用命令的主要内容,如果未能解决你的问题,请参考以下文章

Kafka 常用命令行操作

一 Kafka介绍及常用命令行

Kafka常用命令合集

kafka常用的shell命令

kafka常用命令

kafka之常用命令