Apache Kafka is an open-source distributed event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications.
Download the latest Kafka release and extract it:
https://kafka.apache.org/downloads
cd kafka_*
Kafka with ZooKeeper : Start all services
.\bin\windows\zookeeper-server-start.bat .\config\zookeeper.properties
.\bin\windows\kafka-server-start.bat .\config\server.properties
.\bin\windows\kafka-topics.bat --create --topic orders --bootstrap-server localhost:9092
.\bin\windows\kafka-console-producer.bat --topic orders --bootstrap-server localhost:9092
This is my first order
.\bin\windows\kafka-console-consumer.bat --topic orders --bootstrap-server localhost:9092
This is my first order