①创建一个测试用的topic
/data/usr/local/kafka_2.12-1.0.0/bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
② 用Kafka的console-producer在topic test 生产消息
/data/usr/local/kafka_2.12-1.0.0/bin/kafka-console-producer.sh --broker-list admin01:9092,admin02:9092,admin03:9092 --topic test
③ 用Kafka的console-consumer 消费topic test的消息
/data/usr/local/kafka_2.12-1.0.0/bin/kafka-console-consumer.sh --bootstrap-server admin01:9092,admin02:9092,admin03:9092 --topic test --from-beginning
④查询topic,进入kafka目录:
/data/usr/local/kafka_2.12-1.0.0/bin/kafka-topics.sh --list --zookeeper localhost:2181
⑤查询topic内容:
/data/usr/local/kafka_2.12-1.0.0/bin/kafka-console-consumer.sh --bootstrap-server admin01:9092,admin02:9092,admin03:9092 --topic logstash-kafka-devops-log-topic --from-beginning
⑥查看topic 为 test的 详细信息
/data/usr/local/kafka_2.12-1.0.0/bin/kafka-topics.sh --bootstrap-server admin01:9092,admin02:9092,admin03:9092 --describe --topic test
⑦往topic 为 test的内部生产消息
/data/usr/local/kafka_2.12-1.0.0/bin/kafka-console-producer.sh --broker-list admin01:9092,admin02:9092,admin03:9092 --topic test
⑧从topic 为test的内部消费消息
/data/usr/local/kafka_2.12-1.0.0/bin/kafka-console-consumer.sh --bootstrap-server admin01:9092,admin02:9092,admin03:9092 --topic test
⑨删除kafka的测试topic test
/data/kafka_2.11-1.1.0/bin/kafka-topics.sh --delete --zookeeper localhost:2181 --topic test
标签:
kafka
本文转载自: https://blog.csdn.net/Victory_Lei/article/details/128387310
版权归原作者 Rocky000000 所有, 如有侵权,请联系我们删除。
版权归原作者 Rocky000000 所有, 如有侵权,请联系我们删除。