node

Represents a backend node in a load-balancing Cluster.

Identity is host+port.


Can be used in:

Syntax

<node host="string" port="integer" />

Sample

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

Attributes

NameRequiredDefaultDescriptionExamples
port false 80
The node's port.
8080
host true - The node's host.
server3
priority false 10
Node priority; lower values are preferred.
2
healthUrl false - Sets the node's health-check URL. If not set, the default URL derived from host and port will be used.
<node host="localhost" port="8080" healthUrl="http://localhost:8080/health"/>