Producers <--> Consumer
In the above scenario there are lets say 'N' number of producers trying to put a lot of messages in our (Consumer's) JMS queues.
My question is how does the load distribution work in the JMS environments specifically with queues.
I think the JNDI provides sufficient indirection in this case, so all the clients are just looking up some JNDI based queue and connection factory. And any kind of loadDistributor could sit in the between the consumer and the producer to take the incoming messages.
how does it distribute those incoming messages to a farm of JMS providers ( i think we need a farm of them to handle the incoming traffic) but then how do you maintain the synchronized copies of multiple queues.. or do you let any message go into any queue and just process it using MDBs. but how do you guarantee that the 'messages will be processed in the order in which they are received" coz they are all distributed in a bunch of queues...
What is the recommended approach for this kind of 'high-load' environments ?