What is Kafka ? How to use Confluent Kafka in Spring Boot Application ?
Engineering Digest Engineering Digest
78.7K subscribers
22,842 views
625

 Published On May 30, 2024

🟡 Get 1 to 1 coaching with me: https://topmate.io/engineeringdigest
🟡 Donate: https://razorpay.me/@engineeringdigest
🟡 Perks:    / @engineeringdigest  

🔴 Discord: https://discord.oia.bio/engineeringdi...
🔴 Twitch:   / engineeringdigest  
🔴 Personal YouTube Channel:    / @thevipulvats  
🔴 Instagram: https://insta.oia.bio/thevipulvats
🔴 Twitter: https://x.openinapp.co/thevipulvats
🔴 LinkedIn: https://linkedin.oia.bio/thevipulvats
🔴 Website: https://engineeringdigest.net

🟢 Github repo: https://github.com/chotabheeeeem/jour...
🟢 YML File: https://engineeringdigest.oia.link/sp...

🟢 INSTALLATION COMMANDS

zookeeper-server-start.bat ..\..\config\zookeeper.properties

kafka-server-start.bat ..\..\config\server.properties

kafka-topics.bat --create --topic my-topic --bootstrap-server localhost:9092 --replication-factor 1 --partitions 3

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

kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic my-topic --from-beginning

🟢 SENDING MESSAGES COMMANDS

zookeeper-server-start.bat ..\..\config\zookeeper.properties

kafka-server-start.bat ..\..\config\server.properties

kafka-topics.bat --create --topic foods --bootstrap-server localhost:9092 --replication-factor 1 --partitions 4

kafka-console-producer.bat --broker-list localhost:9092 --topic foods --property "key.separator=-" --property "parse.key=true"

kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic foods --from-beginning -property "key.separator=-" --property "print.key=false"

show more

Share/Embed