diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2017-10-24 09:10:42 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2017-10-24 09:10:42 +0000 |
commit | 7fbefa3d0452a6f2301da5d7b5ca5bce6d108644 (patch) | |
tree | a009dd72d58d3af64d24eba431b2301e45a2b8ea /doc/api | |
parent | cc17067085cc61c99322eb5934b73bc30b3e1caf (diff) | |
parent | 705c15d7af013f8ac9c132888dfe2e613e424dd4 (diff) | |
download | gitlab-ce-7fbefa3d0452a6f2301da5d7b5ca5bce6d108644.tar.gz |
Merge branch 'bvl-circuitbreaker-backoff' into 'master'
Circuitbreaker backoff and retries
Closes #37383 and #38231
See merge request gitlab-org/gitlab-ce!14933
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/settings.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/api/settings.md b/doc/api/settings.md index 664f3ef7b77..4e24e4bbfc3 100644 --- a/doc/api/settings.md +++ b/doc/api/settings.md @@ -69,6 +69,8 @@ PUT /application/settings | `after_sign_up_text` | string | no | Text shown to the user after signing up | | `akismet_api_key` | string | no | API key for akismet spam protection | | `akismet_enabled` | boolean | no | Enable or disable akismet spam protection | +| `circuitbreaker_access_retries | integer | no | The number of attempts GitLab will make to access a storage. | +| `circuitbreaker_backoff_threshold | integer | no | The number of failures after which GitLab will start temporarily disabling access to a storage shard on a host. | | `circuitbreaker_failure_count_threshold` | integer | no | The number of failures of after which GitLab will completely prevent access to the storage. | | `circuitbreaker_failure_reset_time` | integer | no | Time in seconds GitLab will keep storage failure information. When no failures occur during this time, the failure information is reset. | | `circuitbreaker_failure_wait_time` | integer | no | Time in seconds GitLab will block access to a failing storage to allow it to recover. | |