Skip to content

khalil-Elf441/kafka-windows-installation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

kafka-windows-installation

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 Kafka

Download the latest Kafka release and extract it: https://kafka.apache.org/downloads

cd kafka_*

Start the kafka environment

Kafka with ZooKeeper : Start all services

.\bin\windows\zookeeper-server-start.bat .\config\zookeeper.properties
.\bin\windows\kafka-server-start.bat .\config\server.properties

Create a topic to store your events

.\bin\windows\kafka-topics.bat --create --topic orders --bootstrap-server localhost:9092

Write events into the topic

.\bin\windows\kafka-console-producer.bat --topic orders --bootstrap-server localhost:9092
This is my first order

Read events into the topic

.\bin\windows\kafka-console-consumer.bat --topic orders --bootstrap-server localhost:9092
This is my first order

About

kafka-windows-installation

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published