Parallel processing of messages by Solace

Hi @Tripti ,
I’ll chime in here quickly:
If you’d like to parallel process inside one application instance, you can do this two by allocating messages to worker threads using a message read thread. When @TomF mentioned this I believe he meant to use the reactor pattern. Here is a quick video on it (granted Aaron uses JCSMP to show the pattern)
qpid-jms-client To be honest I haven’t seen many people use the qpid JMS client. I took a quick look and didn’t see a built in way that it scales consumers for you, but if you’re open to it you may want to consider using Spring JMS as they allow you to just say I want concurrency of 5 or 10 or whatever and then handle the sessions/consumers/threads for you. e.g: on this line you would just add “concurrency=5” or “concurrency=5-10” in the @JMSListener annotation
Hope that helps!