Windows
- zookeeper-server-start.bat config/zookeeper.properties
- kafka-server-start.bat config/server.properties
kafka-topics.bat --bootstrap-server localhost:9092 --topic first --create --partitions 6 --replication-factor 1
kafka-topics.bat --bootstrap-server localhost:9092 --list
kafka-topics.bat --bootstrap-server localhost:9092 --topic first_topic --delete
kafka-console-producer.bat --broker-list localhost:9092 --topic first
kafka-console-producer.bat --broker-list localhost:9092 --topic first --producer-property acks=all
kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic first --from-beginning
kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic first --group