Kafka Cmds

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

C:\kafka>zookeeper-server-start.bat config\zookeeper.

properties --------->
zookeeper

C:\kafka>kafka-server-start.bat config\server.properties ------------>


server

Topic : kafka-topics.bat --create --topic demo --bootstrap-server localhost:9092 --


replication-factor 1 --partitions 4

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

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

You might also like