Тёмный

Kafka Producer Key & Message Acknowledgements 

Knowledge Amplifier
Подписаться 29 тыс.
Просмотров 5 тыс.
50% 1

Опубликовано:

 

27 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 9   
@KnowledgeAmplifier1
@KnowledgeAmplifier1 2 года назад
Reference Code: ------------------------------- Start Zookeeper: --------------------------------------- F:/kafka_2.12-3.2.0/bin/windows/zookeeper-server-start.bat F:/kafka_2.12-3.2.0/config/zookeeper.properties Start Kafka-server: ----------------------------------------- F:/kafka_2.12-3.2.0/bin/windows/kafka-server-start.bat F:/kafka_2.12-3.2.0/config/server.properties Create topic: ------------------------------------ F:/kafka_2.12-3.2.0/bin/windows/kafka-topics.bat --create --topic hello_world2 --bootstrap-server localhost:9092 --replication-factor 1 --partitions 2 Start Producer: -------------------------------------- Earlier we were launching producer using this command -- F:/kafka_2.12-3.2.0/bin/windows/kafka-console-producer.bat --topic hello_world2 --bootstrap-server localhost:9092 Now to send the messages and key-value pair , we are going to launch producer using this command -- F:/kafka_2.12-3.2.0/bin/windows/kafka-console-producer.bat --bootstrap-server localhost:9092 --property "parse.key=true" --property "key.separator=:" --topic hello_world2 Publish the messages -- 1001:"Mobile,100" 1002:"Mouse,50" 1001:"Computer,1500" 1003:"Pen,2" 1002:"Earphone,65" 1001:"Notebook,99" Start Consumer: ------------------------------------- F:/kafka_2.12-3.2.0/bin/windows/kafka-console-consumer.bat --topic hello_world2 --from-beginning --bootstrap-server localhost:9092
@GuyDope-fn6ru
@GuyDope-fn6ru Год назад
best Apache Kafka tutorial I saw so far!
@KnowledgeAmplifier1
@KnowledgeAmplifier1 Год назад
Thank you Guy Dope! Happy Learning
@RadomName3457
@RadomName3457 Год назад
loving your kafka series so far. Best on the platform with your theory and real examples.
@KnowledgeAmplifier1
@KnowledgeAmplifier1 Год назад
Glad to hear that Hoàng Trí! Happy Learning
@KLNP-ot6rq
@KLNP-ot6rq 2 года назад
Very good ! nicely explained !
@KnowledgeAmplifier1
@KnowledgeAmplifier1 2 года назад
Thank you KLNP1978! Happy Learning
@shahezadalam6709
@shahezadalam6709 2 года назад
Will you cover ssl and tls in kafka and also multinode cluster?
@KnowledgeAmplifier1
@KnowledgeAmplifier1 2 года назад
Hello shahezad alam, sure will cover ssl & tls , for multinode cluster , you can have a look in the below videos which already I uploaded -- Kafka Cluster with Multiple Brokers ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-fOh98R9usck.html Topic with Replication in Multiple Broker Kafka Cluster ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-jjtGMij-DPo.html Happy Learning :-)
Далее
Kafka Producer Internals
9:10
Просмотров 2,7 тыс.
ИСТОРИЯ ПРО ШТАНЫ #shorts
00:32
Просмотров 300 тыс.
Topics, partitions, and offsets in Kafka
22:32
Просмотров 8 тыс.
Error Handling in Kafka Producer In-Depth Intuition
16:12
Kafka Cluster with Multiple Brokers
33:57
Просмотров 13 тыс.
Multiple Producer & Multiple Consumer in a Kafka Topic
10:33