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.
>Solution :
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.