Spark streaming with JMS - no API

Is there any API / way to integrate Spark Streaming with JMS. I can integrate with Kafka and Sockets, but for integration with a JMS queue or topic in which I cannot.

+5
source share
2 answers

I think you should try calling reciver api in a spark. You need to create a custom receiver

http://spark.apache.org/docs/latest/streaming-custom-receivers.html

Also check trust from tathagat das, which is the source of spark from

www.apache-spark-user-list.1001560.n3.nabble.com/Spark-Streaming-and-JMS-td5371.html

If you need help with details, let me know.

+3
source

I know this is an old post. Since I am working on something similar. You can use an intrinsically safe receiver

Corrected JMS Receiver

+1
source

Source: https://habr.com/ru/post/1211403/


All Articles