Sorry, I missed a bit in the docs:
<!-- use the worker pool builder to create to help create the shared thread
pool -->
<bean id="poolBuilder"
class="org.apache.camel.component.netty.NettyWorkerPoolBuilder">
<property name="workerCount" value="2"/>
</bean>
<!-- the shared worker thread pool -->
<bean id="sharedPool" class="org.jboss.netty.channel.socket.nio.WorkerPool"
factory-bean="poolBuilder" factory-method="build"
destroy-method="shutdown">
</bean>
Does anyone know how to convert this to blueprint?
Am 24.09.2014 um 16:51 schrieb Walzer, Thomas <[email protected]>:
> Hi there,
>
> I have 7 netty producers running on a 32 core system.
> This results in approximately 7x32x2=448 threads which leads to frequent
> out-of-memory/unable to create new native thread errors on my 32 bit jvm.
>
> The producers are very low volume both in terms of message size and number of
> messages.
>
> Is there any chance to reduce the number of threads used by netty?
>
> Camel version=2.13.2
>
> Thanks in advance, Thomas.