Overview

Backend servers receive and process requests from the associated load balancer.

If the incoming traffic increases, you can add more backend servers to ensure the stability and reliability of applications and eliminate SPOFs. If the incoming traffic decreases, you can remove some backend servers to reduce costs.

If the load balancer is associated with an AS group, backend servers are automatically associated with or disassociated from the load balancer.

You can only add servers in the same VPC as the load balancer. For details, see Adding Backend Servers.

Precautions

Constraints and Limitations

Backend Server Weights

You need to set a weight for each backend server in a backend server group. The higher the weight, the more requests the backend server receives.

The weight ranges from 0 to 100. If you set the weight of a backend server to 0, new requests will not be routed to this server.

Three load balancing algorithms allow you to set weights to backend servers, as described in Table 1. For more information about load balancing algorithms, see Load Balancing Algorithms.

Table 1 Server weights in different load balancing algorithms

Load Balancing Algorithm

Weight Setting

Weighted round robin

  • If none of the servers have a weight of 0, the load balancer routes requests to backend servers based on their weights. Backend servers with higher weights receive proportionately more requests.
  • If two backend servers have the same weights, they receive the same number of requests.

Weighted least connections

  • If none of the backend servers have a weight of 0, the load balancer calculates the load of each backend server using the formula (Overhead = Number of current connections/Backend server weight).
  • The load balancer routes requests to the backend server with the lowest overhead.

Source IP hash

  • If none of the backend servers have a weight of 0, the requests from the same client are routed to the same backend server within a period of time.
  • If the weight of a backend server is 0, no requests are routed to this backend server.