RE: How to control thread creation in an embedded broker

2011-10-06 Thread Millies, Sebastian
11:31 PM > To: users@activemq.apache.org > Subject: RE: How to control thread creation in an embedded broker > > yes, the size of the thread pool is unbounded, if this is the > right source I'm looking at: > http://activemq.apache.org/maven/5.2.0/activemq- > core/apidocs

RE: How to control thread creation in an embedded broker

2011-10-05 Thread Millies, Sebastian
o create a compact test case. May take me a few weeks though... -- Sebastian -Original Message- From: Torsten Mielke [mailto:tors...@fusesource.com] Sent: Wednesday, October 05, 2011 3:41 PM To: users@activemq.apache.org Subject: Re: How to control thread creation in an embedded broker

Re: How to control thread creation in an embedded broker

2011-10-05 Thread Torsten Mielke
What's the name of the threads being created continuously on your broker? not using a dedicated task runner is a good idea, as it uses a thread pool instead. However from what I know the size of that thread pool is basically unbounded as well, and if all newly created threads are in use, the brok

How to control thread creation in an embedded broker

2011-10-05 Thread Millies, Sebastian
Hello there, I'm using an embedded BrokerService with a single destination, which is a queue that hands off incoming messages to an SCA logging service. Internally, that logging service follows the producer-consumer pattern with a single blocking queue, so the producer basically gets handed a mes