Add editorial review

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
This commit is contained in:
Naarcha-AWS 2022-05-26 13:40:33 -05:00
parent 42e18c6997
commit ed48f70dfb
1 changed files with 2 additions and 2 deletions

View File

@ -146,8 +146,8 @@ The `memoryCircuitBreaker` parameter in the [Cluster Settings API]({{site.url}}{
`memoryCircuitBreaker` contains two fields:
- `enabled`: A boolean used to turn the circuit breaker on or off. Defaults to `false`.
- `maxPercentage`: The threshold that determines whether the Circuit Break engages. The input range must be between `[0 ,1]`. Any number that exceeds that range will correct to `1.0`.
- `enabled`: A Boolean used to turn the Circuit Breaker on or off. Defaults to `false`.
- `maxPercentage`: The threshold that determines whether the Circuit Breaker engages. The input range must be between `[0 ,1]`. Any number that exceeds that range will correct to `1.0`.
The following example turns on the Circuit Breaker and sets the maximum percentage of a query response to 80% of the cluster's storage. You can customize this example for use in the `POST _cluster/settings` request body.