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,
>> >
;
>
>
>
>
> -
> 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.
>
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
.
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
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
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
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
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
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