spring-cloud-stream-example

Apache-Kafka Binary Distribution Download.
Strat Zookeeper server

zookeeper-server-start.bat D:\software\kafka_2.11-2.3.1\config\zookeeper.properties

Strat Kafka server

kafka-server-start.bat D:\software\kafka_2.11-2.3.1\config\server.properties

Create Topic

kafka-topics.bat --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 -topic javatechie

List down all available topics

kafka-topics.bat --list --zookeeper localhost:2181

Produce a message

kafka-console-producer.bat --broker-list localhost:9092 --topic javatechie

Consume a message

kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic javatechie