kafka 命令行操作

1、创建主题(topic)

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

2、查看主题

bin/kafka-topics.sh --list --zookeeper m6:2181

3、向主题发送消息(生产者)

bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test

4、接收主题发送的消息(消费者)

bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning

上一篇:64位ubuntu编译32位程序


下一篇:ASP.NET Core中的依赖注入(2):依赖注入(DI)