Apache Kafka 入门
Mike Metzger
Data Engineering Consultant
kafka-console-producer.shbin/ 目录,与其他 Kafka 工具同处bin/kafka-console-producer.sh--bootstrap-server - 指定要连接的服务器--bootstrap-server localhost:9092--topic--topic phishing-sites| 管道传递消息bin/kafka-console-producer.sh --bootstrap-server localhost:9092 --topic testing
>This is the first message
>This is the second message
>This is the third message
<ctrl+c to exit>
echo "This is the first message" |
bin/kafka-console-producer.sh --bootstrap-server localhost:9092 --topic testing
Apache Kafka 入门