RE: How to read messages from a queue in parallel

2018-12-20 Thread Valdis Andersons
orked around with backups). Hope that helps, not sure if I would know of any other ways how to achieve what you're looking for. Regards, Valdis -Original Message- From: Peter Billen [mailto:peter.bil...@gmail.com] Sent: 19 December 2018 13:07 To: users@camel.apache.org Subject: Re: How

Re: How to read messages from a queue in parallel

2018-12-19 Thread Peter Billen
processing them in sequence in a continuous >> way. The separate queues would allow to fulfil the parallel processing per >> group requirement. >> >> There is also a Dynamic Router option, but I personally wouldn't have any >> experience with it, but if none of the

Re: How to read messages from a queue in parallel

2018-12-18 Thread Peter Billen
ut if none of the above suit your needs it might be > something worth looking into: > > http://camel.apache.org/dynamic-router.html > > > Thanks, > Valdis > > -Original Message- > From: Peter Billen [mailto:peter.bil...@gmail.com] > Sent: 17 December 2018 11:

RE: How to read messages from a queue in parallel

2018-12-17 Thread Valdis Andersons
ct: How to read messages from a queue in parallel Hi all, I am reading from a RabbitMQ queue as following: from("rabbitmq://localhost/?queue=camel&autoAck=false&concurrentConsumers=1& threadPoolSize=1&prefetchEnabled=true&prefetchCount=50") Some remarks about the co

How to read messages from a queue in parallel

2018-12-17 Thread Peter Billen
Hi all, I am reading from a RabbitMQ queue as following: from("rabbitmq://localhost/?queue=camel&autoAck=false&concurrentConsumers=1& threadPoolSize=1&prefetchEnabled=true&prefetchCount=50") Some remarks about the configuration parameters: - I set `autoAck` to false to be able to acknowledge ma