1、进入zookeeper的bin目录,运行zookeeper: zkserver
2、进入kafka目录,运行:.\bin\windows\kafka-server-start.bat .\config\server.properties
3、运行kafka的producer:.\bin\windows\kafka-console-producer.bat --broker-list localhost:9092 --topic test
4、运行kafka的customer:.\bin\windows\kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic test --from-beginning
5、在producer的cmd里面写消息内容,可以看到customer的cmd接收到了消息。
5、启动rdkafka的程序(程序中端口设置为9092,ip设置为licalhost,topic设置为test),在启动窗口发送消息,可以看到customer的cmd里面接收到了消息。
github下载librdkafka:
https://github.com/edenhill/librdkafka/tree/v0.11.6-RC4