CircuitBreakers(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Settings controlling the volume of connections to a backend service.
Attributes | |
---|---|
Name | Description |
max_connections |
int
The maximum number of connections to the backend service. If not specified, there is no limit. |
max_pending_requests |
int
The maximum number of pending requests allowed to the backend service. If not specified, there is no limit. |
max_requests |
int
The maximum number of parallel requests that allowed to the backend service. If not specified, there is no limit. |
max_requests_per_connection |
int
Maximum requests for a single connection to the backend service. 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. |
max_retries |
int
The maximum number of parallel retries allowed to the backend cluster. If not specified, the default is 1. |