Apache Kafka 입문
Mike Metzger
Data Engineering Consultant
kafka-console-producer.shbin/ 폴더에 있습니다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 입문