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 เบื้องต้น