Get Backend Service Circuit Breaker
data class GetBackendServiceCircuitBreaker(val connectTimeouts: List<GetBackendServiceCircuitBreakerConnectTimeout>, val maxConnections: Int, val maxPendingRequests: Int, val maxRequests: Int, val maxRequestsPerConnection: Int, val maxRetries: Int)
Properties
Link copied to clipboard
The timeout for new network connections to hosts.
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.