Re: Transactional batching

2013-04-04 Thread boday
tp://camel.apache.org/batch-consumer.html. >> > >> > Either transaction mode would benefit a lot if you could process >> several >> > messages in one go. >> > >> > Typical usecase would be tx( N messages, process them in paralell, >> >

Re: Transactional batching

2013-04-03 Thread Scott England-Sullivan
; > > > > > - > Ben O'Day > IT Consultant -http://consulting-notes.com > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Transactional-batching-tp474002p5730245.html > Sent from the Camel - Users mailing list archive at Nabble.com. >

Re: Transactional batching

2013-04-02 Thread boday
ld benefit a lot if you could process several > messages in one go. > > Typical usecase would be tx( N messages, process them in paralell, > aggregate and send out ) - Ben O'Day IT Consultant -http://consulting-notes.com -- View this message in context: http://camel.465427.n

Re: Transactional batching

2011-08-21 Thread David J. M. Karlsen
. Either transaction mode would benefit a lot if you could process several messages in one go. Typical usecase would be tx( N messages, process them in paralell, aggregate and send out ) -- View this message in context: http://camel.465427.n5.nabble.com/Transactional-batching-tp474002p4721633.html

Re: Transactional batching

2009-03-11 Thread Claus Ibsen
On Tue, Mar 10, 2009 at 8:23 PM, Thomas Beckmann wrote: > Hi, > > Am Dienstag 10 März 2009 schrieb Claus Ibsen: >> On Tue, Mar 10, 2009 at 3:23 PM, Thomas Beckmann >> >> wrote: >> > Hi, >> > >> > we are using camel 1.6 and we have a simple route that reads from an >> > activemq queue and writes t

Re: Transactional batching

2009-03-10 Thread Thomas Beckmann
Hi, Am Dienstag 10 März 2009 schrieb Claus Ibsen: > On Tue, Mar 10, 2009 at 3:23 PM, Thomas Beckmann > > wrote: > > Hi, > > > > we are using camel 1.6 and we have a simple route that reads from an > > activemq queue and writes to another activemq queue based on a recipient > > list. The read and

Re: Transactional batching

2009-03-10 Thread Adrian Trenaman
Seems to me that each message is being read from ActiveMQ in it's own transaction, so, you can't really have this batching happen in one transaction. You might want to * Read each message from AMQ in it's own JMS transaction * Write the content of each message to a database * Then, have rout

Re: Transactional batching

2009-03-10 Thread Claus Ibsen
On Tue, Mar 10, 2009 at 3:23 PM, Thomas Beckmann wrote: > Hi, > > we are using camel 1.6 and we have a simple route that reads from an activemq > queue and writes to another activemq queue based on a recipient list. The > read and write is done in a transaction. > > Is it possible to somehow confi

Transactional batching

2009-03-10 Thread Thomas Beckmann
Hi, we are using camel 1.6 and we have a simple route that reads from an activemq queue and writes to another activemq queue based on a recipient list. The read and write is done in a transaction. Is it possible to somehow configure a batchsize and timeout so that a couple of messages are proc