Commands
Start Zookeeper Server
.\bin\windows\zookeeper-server-start.bat .\config\zookeeper.propertiesStart Kafka Server / Broker
.\bin\windows\kafka-server-start.bat .\config\server.propertiesCreate Topic
.\bin\windows\kafka-topics.bat --bootstrap-server localhost:9092 --create --topic test --partitions 3 --replication-factor 1Produce Message
.\bin\windows\kafka-console-producer.bat --broker-list localhost:9092 --topic testConsume Message
.\bin\windows\kafka-console-consumer.bat --topic test --bootstrap-server localhost:9092 --from-beginningDescribe topics
.\bin\windows\kafka-topics.bat --bootstrap-server localhost:9092 --describe --topic NewTopicList all the topics
.\bin\windows\kafka-topics.bat --bootstrap-server localhost:9092 --listStop Zookeeper
.\bin\windows\zookeeper-server-stop.bat .\config\zookeeper.propertiesStop Kafka Server
.\bin\windows\kafka-server-stop.bat .\config\server.properties