Backend Service Circuit Breakers Args
data class BackendServiceCircuitBreakersArgs(val connectTimeout: Output<BackendServiceCircuitBreakersConnectTimeoutArgs>? = null, val maxConnections: Output<Int>? = null, val maxPendingRequests: Output<Int>? = null, val maxRequests: Output<Int>? = null, val maxRequestsPerConnection: Output<Int>? = null, val maxRetries: Output<Int>? = null) : ConvertibleToJava<BackendServiceCircuitBreakersArgs>
Properties
Link copied to clipboard
The timeout for new network connections to hosts. Structure is documented below.
Link copied to clipboard
The maximum number of connections to the backend cluster. Defaults to 1024.
Link copied to clipboard
The maximum number of pending requests to the backend cluster. Defaults to 1024.
Link copied to clipboard
The maximum number of parallel requests to the backend cluster. Defaults to 1024.
Link copied to clipboard
Maximum requests for a single backend connection. This parameter is respected by both the HTTP/1.1 and HTTP/2 implementations. If not specified, there is no limit. Setting this parameter to 1 will effectively disable keep alive.
Link copied to clipboard
The maximum number of parallel retries to the backend cluster. Defaults to 3.