Load Balancing

Load balancing refers to efficiently distributing incoming network traffic across a group of backend servers, also known as a server farm or server pool.

Example configuration:

services:
  myLoadBalancer:
    host: lb.example.com
      persistent: true
      strategy: random
      serviceNames: ["server1", "server2"]
  server1:
    redirect: "http://172.30.0.4:3000"
  server2:
    redirect: "http://172.24.0.2:8080"

Properties:

Selection Strategies

All strategies respect health checks.