Created 10-28-2015 02:56 PM
What is recommended way to connect IBM MQ with Storm. Is this supported ?
Created 10-28-2015 03:01 PM
Please see this
Is it possible to use MQ-Series instead of Kafka as Messaging Queue?
Apache Storm supports JMS Spouts. It is currently certified with Active MQ and Oracle JMS. We ran into issues with IBM MQ-Series with respect to how messages are acknowledged by IBM MQ. IBM-MQ requires the thread that receives the message be the same thread that acks it. Storm’s framework cannot support this requirement, as the receiving and acking thread by design are different threads to achieve higher throughput.
Created 10-28-2015 03:01 PM
Please see this
Is it possible to use MQ-Series instead of Kafka as Messaging Queue?
Apache Storm supports JMS Spouts. It is currently certified with Active MQ and Oracle JMS. We ran into issues with IBM MQ-Series with respect to how messages are acknowledged by IBM MQ. IBM-MQ requires the thread that receives the message be the same thread that acks it. Storm’s framework cannot support this requirement, as the receiving and acking thread by design are different threads to achieve higher throughput.
Created 10-28-2015 03:38 PM
It seems like nothing is changed here? This was the case last year. Do we have any plan to address this?
Created 03-28-2016 06:16 AM
As the answer suggests, just use the built-in JMS spout. The Storm project page has details on how to set it up....