scheduler
Parameters
value
The scheduling algorithm. Valid values:
Wrr
(default): The weighted round-robin algorithm is used. Backend servers that have higher weights receive more requests than those that have lower weights.Wlc
: The weighted least connections algorithm is used. Requests are distributed based on the weights and the number of connections to backend servers. If two backend servers have the same weight, the backend server that has fewer connections is expected to receive more requests.Sch
: The consistent hashing algorithm is used. Requests from the same source IP address are distributed to the same backend server.
NOTE: This parameter takes effect when the
ServerGroupType
parameter is set toInstance
orIp
.