How to write a file to Kafka Producer

后端 未结 4 476
甜味超标
甜味超标 2020-12-07 20:57

I am trying to load a simple text file instead of standard input in Kafka. After downloading Kafka, I performed the following steps:

Started zookeeper:

4条回答
  •  天涯浪人
    2020-12-07 21:42

    echo "Hello" | kafka-console-producer.sh --broker-list localhost:9092 --topic my_topic
    

提交回复
热议问题