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