SEDA queue in Camel blocks.

2013-09-03 Thread Gaurav Sehgal
Hi,     I am using Camel's implementation of SEDA queue inside JBOSS FUSE; though at times the consumer does not get all the messages and when I restart the camel context the messages seem to flow through. This seems like the messages are blocked for some reason and the consumer is not processin

Re: SEDA queue in Camel blocks.

2013-09-03 Thread Christian Posta
I've never seen something like that. What does your route look like (ie, what other endpoints are after the seda endpoints? how many consumers do you have for the seda endpoints?). Your best bet is to recreate this and take a thread dump. Or recreate it and post it as a test here. On Tue, Sep 3,

Re: SEDA queue in Camel blocks.

2013-09-05 Thread Gaurav Sehgal
an(blobStoreProcessing, "processBlobStore"); } }); Cheers! Gaurav From: Christian Posta To: "users@camel.apache.org" ; Gaurav Sehgal Sent: Tuesday, September 3, 2013 7:18 PM Subject: Re: SEDA queue in Camel blocks. I've never

Re: SEDA queue in Camel blocks.

2013-09-05 Thread Raul Kripalani
rocessCassandraStore"); > } > }); > > context.addRoutes(new RouteBuilder() { > public void configure() { > from("direct:blobStore").threads(5) > .bean(blobStoreProcessing, > "processBlobStore"); > } > }); > >