mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-23 23:51:08 +02:00
26 lines
704 B
Plaintext
26 lines
704 B
Plaintext
---
|
|
layout: docs
|
|
page_title: Request Limiter - Configuration
|
|
description: |-
|
|
The Request Limiter mitigates overload scenarios in Vault by adaptively
|
|
limiting in-flight requests based on latency measurements.
|
|
---
|
|
|
|
# `request_limiter`
|
|
|
|
@include 'alerts/enterprise-only.mdx'
|
|
|
|
@include 'alerts/beta.mdx'
|
|
|
|
The `request_limiter` stanza allows operators to turn on the adaptive
|
|
concurrency limiter, which is off by default. This is a reloadable config.
|
|
|
|
```hcl
|
|
request_limiter {
|
|
disable = false
|
|
}
|
|
```
|
|
|
|
~> **Warning** This feature is still in Tech Preview. Turning the Request
|
|
Limiter *on* may have negative effects on request success rates. Please test
|
|
your workloads before turning this on in production. |