-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9fbf89
commit 2bf238b
Showing
34 changed files
with
356 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
docs/configuration/cluster_manager/cluster_circuit_breakers.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
.. _config_cluster_manager_cluster_circuit_breakers: | ||
|
||
Circuit breakers | ||
================ | ||
|
||
Circuit breaking :ref:`architecture overview <arch_overview_circuit_break>`. | ||
|
||
Circuit breaking settings can be specified individually for each defined priority. How the | ||
different priorities are used are documented in the sections of the configuration guide that use | ||
them. | ||
|
||
.. code-block:: json | ||
{ | ||
"default": "{...}", | ||
"high": "{...}" | ||
} | ||
default | ||
*(optional, object)* Settings object for default priority. | ||
|
||
high | ||
*(optional, object)* Settings object for high priority. | ||
|
||
Per priority settings | ||
--------------------- | ||
|
||
.. code-block:: json | ||
{ | ||
"max_connections": "...", | ||
"max_pending_requests": "...", | ||
"max_requests": "...", | ||
"max_retries": "...", | ||
} | ||
max_connections | ||
*(optional, integer)* The maximum number of connections that Envoy will make to the upstream | ||
cluster. If not specified, the default is 1024. See the :ref:`circuit breaking overview | ||
<arch_overview_circuit_break>` for more information. | ||
|
||
max_pending_requests | ||
*(optional, integer)* The maximum number of pending requests that Envoy will allow to the upstream | ||
cluster. If not specified, the default is 1024. See the :ref:`circuit breaking overview | ||
<arch_overview_circuit_break>` for more information. | ||
|
||
max_requests | ||
*(optional, integer)* The maximum number of parallel requests that Envoy will make to the upstream | ||
cluster. If not specified, the default is 1024. See the :ref:`circuit breaking overview | ||
<arch_overview_circuit_break>` for more information. | ||
|
||
max_retries | ||
*(optional, integer)* The maximum number of parallel retries that Envoy will allow to the upstream | ||
cluster. If not specified, the default is 3. See the :ref:`circuit breaking overview | ||
<arch_overview_circuit_break>` for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.