Re: How to read messages from a queue in parallel

2018-12-19 Thread Peter Billen
ground-queue-parallel-processing-ordered. It's Docker based, so no external dependencies is needed. The full code related to this thread can be found on https://github.com/pbillen/playground-queue-parallel-processing-ordered/blob/master/src/test/java/C_RabbitMQ_IT.java . Thanks. On Tue,

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:

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