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 परिचय