Competing ConsumersCamel supports the Competing Consumers from the EIP patterns using a few different components.
You can use the following components to implement competing consumers:-
Enabling Competing Consumers with JMSTo enable Competing Consumers you just need to set the concurrentConsumers property on the JMS endpoint. For example
from("jms:MyQueue?concurrentConsumers=5").bean(SomeBean.class);
Or just run multiple JVMs of any ActiveMQ or JMS route Using This PatternIf you would like to use this EIP Pattern then please read the Getting Started, you may also find the Architecture useful particularly the description of Endpoint and URIs. Then you could try out some of the Examples first before trying this pattern out. |
