aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/connection-backoff.md
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-11-22 17:15:34 -0800
committerGravatar David Garcia Quintas <dgq@google.com>2016-11-24 00:47:51 -0800
commit1edfb952d0aa12bdc154e85eab24e87621292366 (patch)
treec4f7bd93c9daf0e1aeaa585be3d874de4fb125b1 /doc/connection-backoff.md
parent01eda53c817fe766c6d63cb486f70284d9e3ee4d (diff)
Updated backoff to spec.
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