Ankit Singh
Ankit Singh

Reputation: 28

Realated Apache Kafka producer and consumer part

Is it possible to send a message from a Java producer into a Kafka topic and consume the same message from same topic through a python consumer?

I'm only able to produce and consume data from python but I want producer data from java in Kafka topic and want to consume data through python consumer.

Upvotes: 0

Views: 42

Answers (2)

OneCricketeer
OneCricketeer

Reputation: 191904

I want producer data from java

That's exactly what bin/kafka-console-producer built-in script does. It is a shell command wrapped around Java code.

If you can consume those records from your existing Python consumer, that's exactly what you are asking for.

Upvotes: 1

Raghu Chahar
Raghu Chahar

Reputation: 1773

Yes, sending a message from any language producer to a Kafka topic is possible, and then consuming the same message from the same topic using any language consumer. In your case Java and python respectively.

Upvotes: 2

Related Questions