以下所有脚本需要在kafka安装目录的bin下执行
1.创建topic:create_topic.sh
.
/kafka-topic
.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic testtopic0
#testtopic0不要使用"."或"_"分割
2.查看topic:show_topic.sh
.
/kafka-topic
.sh --list --zookeeper localhost:2181
3.向topic生产数据:produce_topic.sh
.
/kafka-console-producer
.sh --broker-list localhost:9092 --topic testtopic0
4.从topic消费数据:consume_topic.sh
.
/kafka-console-consumer
.sh --bootstrap-server localhost:9092 --topic testtopic0 --from-beginning
#每次从头开始消费