Introduction to Apache Kafka
Mike Metzger
Data Engineering Consultant
kafka-console-producer.sh
bin/
folder, with other Kafka toolsbin/kafka-console-producer.sh
--bootstrap-server
- Specifies which server to use--bootstrap-server localhost:9092
--topic
--topic phishing-sites
|
symbol to pass messagesbin/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
Introduction to Apache Kafka