Hi,
I've read a few postings related to configuring the thread pool size in the
servicemix.xml file. I've done the following which works great with the
servicemix-bean component:
<property name="configs">
<map>
<entry key="flow.seda.servicemix-bean">
<bean
class="org.apache.servicemix.executors.impl.ExecutorConfig">
<property name="corePoolSize" value="2"/>
<property name="maximumPoolSize" value="3"/>
<property name="queueSize" value="-1"/>
</bean>
</entry>
</map>
</property>
The problem I'm trying to solve next is to understand if there's a way to
set the thread pool at a more granular level - basically at the bean level
that represents my endpoint. I need to be able to throttle specific end
points that I've created with the servicemix-bean component.
Is there a way to do this with a different thread pool setting? Or perhaps
another strategy?
Thanks for the help.
--
View this message in context:
http://www.nabble.com/servicemix-bean-thread-pool-at-a-more-granular-level-tp17237156p17237156.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.