Connection between Apache Kafka and JMS

前端 未结 3 620
逝去的感伤
逝去的感伤 2021-01-25 09:54

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

3条回答
  •  执念已碎
    2021-01-25 10:35

    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.

提交回复
热议问题