Package com.google.cloud.compute.v1
Enum BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name
- java.lang.Object
-
- java.lang.Enum<BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name>
-
- com.google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name>
- Enclosing class:
- BackendServiceLocalityLoadBalancingPolicyConfigPolicy
public static enum BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name extends Enum<BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name> implements com.google.protobuf.ProtocolMessageEnum
The name of a locality load-balancing policy. Valid values include ROUND_ROBIN and, for Java clients, LEAST_REQUEST. For information about these values, see the description of localityLbPolicy. Do not specify the same policy more than once for a backend. If you do, the configuration is rejected.
Protobuf enumgoogle.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INVALID_LB_POLICY
INVALID_LB_POLICY = 323318707;
LEAST_REQUEST
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.ORIGINAL_DESTINATION
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.RING_HASH
The ring/modulo hash load balancer implements consistent hashing to backends.ROUND_ROBIN
This is a simple policy in which each healthy backend is selected in round robin order.UNDEFINED_NAME
A value indicating that the enum field is not set.UNRECOGNIZED
WEIGHTED_MAGLEV
Per-instance weighted Load Balancing via health check reported weights.
-
Field Summary
Fields Modifier and Type Field Description static int
INVALID_LB_POLICY_VALUE
INVALID_LB_POLICY = 323318707;
static int
LEAST_REQUEST_VALUE
An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests.static int
MAGLEV_VALUE
This algorithm implements consistent hashing to backends.static int
ORIGINAL_DESTINATION_VALUE
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.static int
RANDOM_VALUE
The load balancer selects a random healthy host.static int
RING_HASH_VALUE
The ring/modulo hash load balancer implements consistent hashing to backends.static int
ROUND_ROBIN_VALUE
This is a simple policy in which each healthy backend is selected in round robin order.static int
UNDEFINED_NAME_VALUE
A value indicating that the enum field is not set.static int
WEIGHTED_MAGLEV_VALUE
Per-instance weighted Load Balancing via health check reported weights.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name>
internalGetValueMap()
static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name
valueOf(int value)
Deprecated.static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name
valueOf(String name)
Returns the enum constant of this type with the specified name.static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED_NAME
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name UNDEFINED_NAME
A value indicating that the enum field is not set.
UNDEFINED_NAME = 0;
-
INVALID_LB_POLICY
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name INVALID_LB_POLICY
INVALID_LB_POLICY = 323318707;
-
LEAST_REQUEST
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name LEAST_REQUEST
An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests.
LEAST_REQUEST = 46604921;
-
MAGLEV
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name 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
MAGLEV = 119180266;
-
ORIGINAL_DESTINATION
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name ORIGINAL_DESTINATION
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.
ORIGINAL_DESTINATION = 166297216;
-
RANDOM
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name RANDOM
The load balancer selects a random healthy host.
RANDOM = 262527171;
-
RING_HASH
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name RING_HASH
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.
RING_HASH = 432795069;
-
ROUND_ROBIN
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name ROUND_ROBIN
This is a simple policy in which each healthy backend is selected in round robin order. This is the default.
ROUND_ROBIN = 153895801;
-
WEIGHTED_MAGLEV
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name WEIGHTED_MAGLEV
Per-instance weighted Load Balancing via health check reported weights. If set, the Backend Service must configure a non legacy HTTP-based Health Check, and health check replies are expected to contain non-standard HTTP response header field X-Load-Balancing-Endpoint-Weight to specify the per-instance weights. If set, Load Balancing is weighted based on the per-instance weights reported in the last processed health check replies, as long as every instance either reported a valid weight or had UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains equal-weight. This option is only supported in Network Load Balancing.
WEIGHTED_MAGLEV = 254930962;
-
UNRECOGNIZED
public static final BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name UNRECOGNIZED
-
-
Field Detail
-
UNDEFINED_NAME_VALUE
public static final int UNDEFINED_NAME_VALUE
A value indicating that the enum field is not set.
UNDEFINED_NAME = 0;
- See Also:
- Constant Field Values
-
INVALID_LB_POLICY_VALUE
public static final int INVALID_LB_POLICY_VALUE
INVALID_LB_POLICY = 323318707;
- See Also:
- Constant Field Values
-
LEAST_REQUEST_VALUE
public static final int LEAST_REQUEST_VALUE
An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests.
LEAST_REQUEST = 46604921;
- See Also:
- Constant Field Values
-
MAGLEV_VALUE
public static final int MAGLEV_VALUE
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
MAGLEV = 119180266;
- See Also:
- Constant Field Values
-
ORIGINAL_DESTINATION_VALUE
public static final int ORIGINAL_DESTINATION_VALUE
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.
ORIGINAL_DESTINATION = 166297216;
- See Also:
- Constant Field Values
-
RANDOM_VALUE
public static final int RANDOM_VALUE
The load balancer selects a random healthy host.
RANDOM = 262527171;
- See Also:
- Constant Field Values
-
RING_HASH_VALUE
public static final int RING_HASH_VALUE
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.
RING_HASH = 432795069;
- See Also:
- Constant Field Values
-
ROUND_ROBIN_VALUE
public static final int ROUND_ROBIN_VALUE
This is a simple policy in which each healthy backend is selected in round robin order. This is the default.
ROUND_ROBIN = 153895801;
- See Also:
- Constant Field Values
-
WEIGHTED_MAGLEV_VALUE
public static final int WEIGHTED_MAGLEV_VALUE
Per-instance weighted Load Balancing via health check reported weights. If set, the Backend Service must configure a non legacy HTTP-based Health Check, and health check replies are expected to contain non-standard HTTP response header field X-Load-Balancing-Endpoint-Weight to specify the per-instance weights. If set, Load Balancing is weighted based on the per-instance weights reported in the last processed health check replies, as long as every instance either reported a valid weight or had UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains equal-weight. This option is only supported in Network Load Balancing.
WEIGHTED_MAGLEV = 254930962;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name c : BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
public static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
desc
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-