kafka 常用命令

本人kafka 版本:kafka_2.11-0.10.1.0

1.查看topic 列表:

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

//以下以 test 为topic 名称为例
2.创建topic

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

3.查看topic明细:

./kafka-topics.sh --describe --zookeeper 192.168.0.9:2181 --topic test

4.修改topic参数:

./kafka-topics.sh --zookeeper 192.168.0.9:2181 --partition 4 --topic test --alter

5.删除topic:

bin/kafka-topics.sh --zookeeper 192.168.0.9:2181 --delete --topic test

6.永久删除topic:

删除kafka存储目录(server.properties文件log.dirs配置,默认为"/tmp/kafka-logs")相关topic目录 
删除zookeeper "/brokers/topics/"目录下相关topic节点
cd /usr/lib/zookeeper,或 cd 
bin/zkCli.sh -server 127.0.0.1
ls /brokers/topics/test
rmr /brokers/topics/test
rmr /admin/delete_topics/test

你可能感兴趣的:(kafka)