See: Description
| Class | Description |
|---|---|
| CircuitBreakerLoadBalancerDefinition | Deprecated
use Hystrix EIP instead which is the popular Netflix implementation of circuit breaker
|
| CustomLoadBalancerDefinition |
Custom load balancer
|
| FailoverLoadBalancerDefinition |
Failover load balancer
The failover load balancer is capable of trying the next processor in case an Exchange failed with an exception during processing.
|
| RandomLoadBalancerDefinition |
Random load balancer
The random load balancer selects a random endpoint for each exchange.
|
| RoundRobinLoadBalancerDefinition |
Round robin load balancer
The round robin load balancer will use the next endpoint for each message.
|
| StickyLoadBalancerDefinition |
Sticky load balancer
Sticky load balancing using an Expression to calculate a correlation key to perform the sticky load balancing;
rather like jsessionid in the web or JMSXGroupID in JMS.
|
| TopicLoadBalancerDefinition |
Topic load balancer
The topic load balancer sends to all destinations (rather like JMS Topics)
|
| WeightedLoadBalancerDefinition |
Weighted load balancer
The weighted load balancing policy allows you to specify a processing load distribution ratio for each server
with respect to others.
|
Apache Camel