Requests are not routed to a backend server if its weight is set to 0.
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.
Requests are not routed to a backend server if its weight is set to 0.
If none of the 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) and routes requests to the backend server with the smallest overhead.
Requests are not routed to a backend server if its weight is set to 0.
Weights do not take effect even if they are not 0, and requests from the same IP address are routed to the same backend server.