Reference documentation and code samples for the Compute Engine v1 API enum BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Types.Name.
The name of a locality load balancer policy to be used. The value should be one of the predefined ones as supported by localityLbPolicy, although at the moment only ROUND_ROBIN is supported. This field should only be populated when the customPolicy field is not used. Note that specifying the same policy more than once for a backend is not a valid configuration and will be rejected.
An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests.
Maglev
This algorithm implements consistent hashing to backends. Maglev can be used as a drop in replacement for the ring hash load balancer. Maglev is not as stable as ring hash but has faster table lookup build times and host selection times. For more information about Maglev, see https://ai.google/research/pubs/pub44824
OriginalDestination
Backend host is selected based on the client connection metadata, i.e., connections are opened to the same address as the destination address of the incoming connection before the connection was redirected to the load balancer.
Random
The load balancer selects a random healthy host.
RingHash
The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host from a set of N hosts only affects 1/N of the requests.
RoundRobin
This is a simple policy in which each healthy backend is selected in round robin order. This is the default.
UndefinedName
A value indicating that the enum field is not set.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-02 UTC."],[[["The latest version available for the `BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Types.Name` is 3.6.0, with multiple previous versions listed, including 3.5.0 down to 1.0.0."],["The `BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Types.Name` enum defines the name of a locality load balancer policy, currently supporting `ROUND_ROBIN` as its only direct supported value."],["The supported policies for the enum `Name` include `InvalidLbPolicy`, `LeastRequest`, `Maglev`, `OriginalDestination`, `Random`, `RingHash`, `RoundRobin`, and `UndefinedName`."],["`Maglev` implements consistent hashing and is considered a faster alternative to `RingHash` and more details on this algorithm can be found at the provided URL."],["`RoundRobin` is the default and simplest load balancing policy, where each healthy backend is selected sequentially, while `RingHash` uses consistent hashing, and `LeastRequest` selects the host with the fewest active requests."]]],[]]