Are there any tools to optimize the number of consumer and producer threads on a JMS queue?

Posted by lindelof on Stack Overflow See other posts from Stack Overflow or by lindelof
Published on 2009-01-06T10:42:46Z Indexed on 2010/05/28 15:01 UTC
Read the original article Hit count: 220

Filed under:
|
|
|
|

I'm working on an application that is distributed over two JBoss instances and that produces/consumes JMS messages on several JMS queues.

When we configured the application we had to determine which threading model we would use, in particular the number of producing and consuming threads per queue. We have done this in a rather ad-hoc fashion but after reading the most recent columns by Herb Sutter in Dr Dobbs (in particular this one) I would like to size our threads in a more rigorous manner.

Are there any methods/tools to measure the throughput of JMS queues (in particular JBoss Messaging queues) as a function of the number of producing/consuming threads?

© Stack Overflow or respective owner

Related posts about Performance

Related posts about multithreading