kafka常用命令
Posted 果果虫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kafka常用命令相关的知识,希望对你有一定的参考价值。
启动kafka:
bin/kafka-server-start.sh config/server.properties &
停止kafka:
bin/kafka-server-stop.sh
创建topic
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic wpp-topic
展示topic
bin/kafka-topics.sh --list --zookeeper localhost:2181
描述topic
bin/kafka-topics.sh --describe --zookeeper localhost:2181 --topic wpp-topic
生产者:
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic wpp-topic
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic wpp-topic --producer.config /root/wpp/producer.properties
消费者:
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic wpp-topic
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic wpp-topic --from-beginnin --consumer.config /root/wpp/consumer.properties
以上是关于kafka常用命令的主要内容,如果未能解决你的问题,请参考以下文章