Re: How to enable thread pool for Mina Endpoint (consumer)

2013-04-18 Thread Hema T
Is it possible using camel mina2? We are having performance issues because of this. How can I improve the performance otherwise? Any upgrades on Camel or camel mina component would help? Please share your thoughts.. Thanks, Hema -- View this message in context: http://camel.465427.n5.nabble.c

Re: How to enable thread pool for Mina Endpoint (consumer)

2013-04-18 Thread Hema T
We are using Camel 2.8.1 and Camel-mina. Thanks, Hema -- View this message in context: http://camel.465427.n5.nabble.com/How-to-enable-thread-pool-for-Mina-Endpoint-consumer-tp5731059p5731062.html Sent from the Camel - Users mailing list archive at Nabble.com.

How to enable thread pool for Mina Endpoint (consumer)

2013-04-18 Thread Hema T
I have a Mina Endpoint where I receive xml messages. I guess the default thread pool size is 10. I need to increase the thread pool size to 30. How can I increase the pool size. I tried producerPoolSize, corePoolSize, maximumPoolSize parameters. But I'm getting "Invalid Parameter" error. Can anybod

Re: Camel Route stops processing abruptly

2013-04-04 Thread Hema T
The endpoint is defined to receive specific protocol messages: public static final String RFC5424_TLS_AUTH_MUST_ENDPOINT = "rae-iti20://0.0.0.0:16503" + "?codec=#atnaCodec&secure=true&clientAuth=MUST&sslContext=#sslContext" + "&sslCiphers=TLS_RSA_WITH_AES_128_CBC_SHA&sslProtoco

Re: Camel Route stops processing abruptly

2013-04-04 Thread Hema T
The route is written in a groovy file and it runs in tomcat server. The application simply hangs after sometime. Here is the code snippet from my route (it used IPF framework) from(RFC5424_TLS_AUTH_MUST_ENDPOINT) .routeId(MINA_RFC5424_TLS_AUTH_MUST_ID) .process {

Camel Route stops processing abruptly

2013-04-04 Thread Hema T
I have a camel route that receives messages on a tcp endpoint. On sending continuous large volume of data, the process stops abruptly without any error or exception in the log file. On restarting the application it works fine again, and again stops after receiving thousands of messages. Anyone fa

Camel Routes - Multi threading nor running parallel

2012-10-22 Thread Hema T
Hi, I have defined a route to take messages from activemq and do some processing and send it to other end point. I have configured thread pool so that many threads pick up messages from the activemq and process it in parallel. But this is not happening. >From the logs I could figure out that th