zookeeper-server-start.bat ....\config\zookeeper.properties
kafka-server-start.bat ....\config\server.properties
kafka-topics.bat --create --topic my-topic --bootstrap-server localhost:9092 --replication-factor 1 --partitions 3
kafka-topics.bat --describe --topic my-topic --bootstrap-server localhost:9092
kafka-console-producer.bat --topic my-topic --bootstrap-server localhost:9092
kafka-console-producer.bat --broker-list localhost:9092 --topic my-topic
message1 message2 message3
kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic my-topic --from-beginning
message1 message2 message3
kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic my-topic
message3