Re: Feeding an Async Processor from an ActiveMQ topic

2009-10-16 Thread Claus Ibsen
On Fri, Oct 16, 2009 at 2:30 PM, Jörn Kottmann wrote: > Claus Ibsen wrote: >> >> On Thu, Oct 15, 2009 at 5:10 PM, Jörn Kottmann wrote: >> >>> >>> Claus Ibsen wrote: >>> Hi You only have 1 consumer listening on the JMS topic     Try increasing this number. >

Re: Feeding an Async Processor from an ActiveMQ topic

2009-10-16 Thread Jörn Kottmann
Claus Ibsen wrote: On Thu, Oct 15, 2009 at 5:10 PM, Jörn Kottmann wrote: Claus Ibsen wrote: Hi You only have 1 consumer listening on the JMS topic Try increasing this number. JMS Topics can only have one concurrent consumer, so I guess I have to switch to a Queue, would

Re: Feeding an Async Processor from an ActiveMQ topic

2009-10-16 Thread Claus Ibsen
On Thu, Oct 15, 2009 at 5:10 PM, Jörn Kottmann wrote: > Claus Ibsen wrote: >> >> Hi >> >> You only have 1 consumer listening on the JMS topic >>     >> >> Try increasing this number. >> > > JMS Topics can only have one concurrent consumer, > so I guess I have to switch to a Queue, would it then >

Re: Feeding an Async Processor from an ActiveMQ topic

2009-10-15 Thread Jörn Kottmann
Jörn Kottmann wrote: Claus Ibsen wrote: Hi You only have 1 consumer listening on the JMS topic Try increasing this number. JMS Topics can only have one concurrent consumer, so I guess I have to switch to a Queue, would it then run 100 threads for concurrentConsumers=100 ? Could inst

Re: Feeding an Async Processor from an ActiveMQ topic

2009-10-15 Thread Jörn Kottmann
Claus Ibsen wrote: Hi You only have 1 consumer listening on the JMS topic Try increasing this number. JMS Topics can only have one concurrent consumer, so I guess I have to switch to a Queue, would it then run 100 threads for concurrentConsumers=100 ? Could instead of a transaction f

Re: Feeding an Async Processor from an ActiveMQ topic

2009-10-15 Thread Claus Ibsen
Hi You only have 1 consumer listening on the JMS topic Try increasing this number. On Thu, Oct 15, 2009 at 4:32 PM, Jörn Kottmann wrote: > Hello, > > in this route the messages are read from an ActiveMQ topic > and then send to an Async Processor. The Async Processor > drives the proces

Feeding an Async Processor from an ActiveMQ topic

2009-10-15 Thread Jörn Kottmann
Hello, in this route the messages are read from an ActiveMQ topic and then send to an Async Processor. The Async Processor drives the processing in an other systems which processes 100 messages parallel. How can I configure camel to keep the Async Processor supplied with at least 100 messages co