Re: BUG: JMS consumer hangs while producing profusely

2009-06-04 Thread Stephen Pietrowicz
dcheckoway wrote: Stephen, thanks for that tip...by setting producerFlowControl=false in activemq.xml, that seems to have solved the issue! Seems like memory is now the only limit (easily fixed). Thanks very much for pointing me in the producerFlowControl direction! Glad that helped!

BUG: JMS consumer hangs while producing profusely

2009-06-02 Thread dcheckoway
Help! I have a transactional JMS consumer invoked by Camel for messages on testQueueA -- it needs to produce/send thousands of messages to the JMS queue testQueueB. Depending upon how many messages need to be sent, this scenario hangs. This happens when talking to ActiveMQ via TCP. I wrote a

Re: BUG: JMS consumer hangs while producing profusely

2009-06-02 Thread Stephen Pietrowicz
We've run into this hanging problem as well, but weren't able to isolate this in our code enough to create a test that makes this happen. Thanks for doing this! After looking through the archives, we tried setting producerFlowControl=false, which fixed the problem. Unfortunately, we've run

Re: BUG: JMS consumer hangs while producing profusely

2009-06-02 Thread dcheckoway
Stephen Pietrowicz wrote: After looking through the archives, we tried setting producerFlowControl=false, which fixed the problem. Stephen, thanks for that tip...by setting producerFlowControl=false in activemq.xml, that seems to have solved the issue! Seems like memory is now the only