Load Balancer Pool Load Shedding Args
data class LoadBalancerPoolLoadSheddingArgs(val defaultPercent: Output<Double>? = null, val defaultPolicy: Output<String>? = null, val sessionPercent: Output<Double>? = null, val sessionPolicy: Output<String>? = null) : ConvertibleToJava<LoadBalancerPoolLoadSheddingArgs>
Properties
Link copied to clipboard
The percent of traffic to shed from the pool, according to the default policy. Applies to new sessions and traffic without session affinity.
Link copied to clipboard
The default policy to use when load shedding. A random policy randomly sheds a given percent of requests. A hash policy computes a hash over the CF-Connecting-IP address and sheds all requests originating from a percent of IPs. Available values: "random", "hash".
Link copied to clipboard
The percent of existing sessions to shed from the pool, according to the session policy.
Link copied to clipboard
Only the hash policy is supported for existing sessions (to avoid exponential decay). Available values: "hash".