Hi,
I have a scenario where a lot of complex business logic is executed including the database updates and inserts done from the listener method of the MDB that I have registered in my Spring Configuration file.
At peak I am expecting a lot of messages arriving to the Queue that my MDP will be listening to - so holding them to have one of processings to get completed is not a good idea I thought.
My question is - Is there a way I can create a pooled MDPs so that each time a message comes it's listened (and do the complex business logic processing) by a different instance of MDP and so it kind of speeds up the process.
I also would like to know if it's possible, what are the possible points that can lead to a trouble.
Thanks,
Sharad


Reply With Quote