cluster

Represents a load-balancing cluster (a named group of {@link Node}s). Provides status management (UP/DOWN/TAKEOUT), node lookup, and simple session tracking.

Can be used in:

bean

Syntax

<cluster name="string">
   <node >*
</cluster>

Sample

<balancer>
  <clusters>
   <cluster name="Default">
     <node host="node1.predic8.com" port="8080" />
     <node host="node2.predic8.com" port="8090" />
     <node host="node3.predic8.com" port="8100" />
   </cluster>
  </clusters>
</balancer>