Kafka基础——经常使用命令行

经常使用命令

查看当前服务器中的全部 topic

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

建立 topic

bin/kafka-topics.sh --zookeeper localhost:2181 --create --replication-factor 3 --partitions 1 --
topic first

选项说明:bootstrap

--topic 定义 topic 名
--replication-factor 定义副本数
--partitions 定义分区数

删除topic

bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic first

须要 server.properties 中设置 delete.topic.enable=true 不然只是标记删除。服务器

查看某个 Topic 的详情

bin/kafka-topics.sh --zookeeper 
localhost:2181 --describe --topic first

修改分区数

bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic first --partitions 6

发送消息

bin/kafka-console-producer.sh --broker-list localhost:2181 --topic first

消费消息

bin/kafka-console-consumer.sh \--zookeeper localhost:2181 --topic first

bin/kafka-console-consumer.sh \--bootstrap-server localhost:9092 --topic first

bin/kafka-console-consumer.sh \--bootstrap-server localhost:9092 --from-beginning --topic first

--bootstrap-server 指定了链接Kafka集群的地址code

相关文章
相关标签/搜索