Learn how to effortlessly set up Apache Kafka on your local machine with our comprehensive step-by-step tutorial! Whether you're a beginner or looking for best practices, this guide covers everything you need to know. Follow along to master Kafka installation and configuration for Windows environments. Don't miss out on valuable tips and tricks for a smooth setup process!
THIS VIDEO INCLUDES THE BELOW CONTENT:
1) Download & Install JDK 8 and Apache Kafka
2) Kafka Zookeeper
3) Kafka Server
4) Create Topic
5) Kafka Producer
6) Kafka Consumer
COMMANDS USED IN THE VIDEO:
Zookeeper Command:
.\bin\windows\zookeeper-server-start.bat .\config\zookeeper.properties
Server Command:
.\bin\windows\kafka-server-start .\config\server.properties
Create Topic Command:
kafka-topics.bat --create --bootstrap-server localhost:9092 --topic BankBranch
Producer Command:
kafka-console-producer.bat --broker-list localhost:9092 --topic BankBranch
Consumer Command:
kafka-console-consumer.bat --topic BankBranch --bootstrap-server localhost:9092 --from-beginning