aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/connection-backoff.md
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-12-06 20:23:13 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-12-06 20:23:13 -0800
commit35769dc29c5fd55ccaf8a234d8704fe7dd7c7fdb (patch)
tree73ceacb8b27e20b189c8c5736378dff695f950b9 /doc/connection-backoff.md
parentebffb4b8231ee397b9415966a6e76c99099fe3c2 (diff)
parentfede4d4198c5d211b8042d29a6f86ff7cafcf666 (diff)
Merge branch 'slice_with_exec_ctx' into slice_interning
Diffstat (limited to 'doc/connection-backoff.md')
-rw-r--r--doc/connection-backoff.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/connection-backoff.md b/doc/connection-backoff.md
index 251a60f384..0e83d9b97f 100644
--- a/doc/connection-backoff.md
+++ b/doc/connection-backoff.md
@@ -7,9 +7,10 @@ requests) and instead do some form of exponential backoff.
We have several parameters:
1. INITIAL_BACKOFF (how long to wait after the first failure before retrying)
- 2. MULTIPLIER (factor with which to multiply backoff after a failed retry)
- 3. MAX_BACKOFF (upper bound on backoff)
- 4. MIN_CONNECT_TIMEOUT (minimum time we're willing to give a connection to
+ 1. MULTIPLIER (factor with which to multiply backoff after a failed retry)
+ 1. JITTER (by how much to randomize backoffs).
+ 1. MAX_BACKOFF (upper bound on backoff)
+ 1. MIN_CONNECT_TIMEOUT (minimum time we're willing to give a connection to
complete)
## Proposed Backoff Algorithm