bin/kafka-topics.sh --zookeeper localhost:2181 --list
bin/kafka-topics.sh --zookeeper localhost:2181 --create --replication-factor 3 --partitions 1 -- topic first
选项说明:bootstrap
--topic 定义 topic 名 --replication-factor 定义副本数 --partitions 定义分区数
bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic first
须要 server.properties 中设置 delete.topic.enable=true 不然只是标记删除。服务器
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