I was wondering could Apache Kafka communicate and send messages to JMS? Can I establish connection between them? For example, I\'m using JMS in my system and it should send mes
answering bit late, but if I understood correctly the requirement.
If the requirement is synchronous messaging from client->JMS->Kafka --- > consumer then following is not the solution, but if its ( and most likely) the async requirement like:
client->JMS | ----> Kafka ---> consumer
then, this would be related to KafkaConnect framework which is solving the problem of how to integrate different sources and sinks with Kafka.
http://docs.confluent.io/2.0.0/connect/ http://www.confluent.io/product/connectors
so what you need is a JMSSourceConnector.