Fix default value for indices.breaker.total.use_real_memory (#6297)
Signed-off-by: Tatsuya Kawakami <43780506+hogesako@users.noreply.github.com>
This commit is contained in:
parent
fd9a6e06fd
commit
52afeb1065
|
@ -15,7 +15,7 @@ To learn more about static and dynamic settings, see [Configuring OpenSearch]({{
|
||||||
|
|
||||||
OpenSearch supports the following parent circuit breaker settings:
|
OpenSearch supports the following parent circuit breaker settings:
|
||||||
|
|
||||||
- `indices.breaker.total.use_real_memory` (Static, Boolean): If `true`, the parent circuit breaker considers the actual memory usage. Otherwise, the parent circuit breaker considers the amount of memory reserved by the child circuit breakers. Default is `false`.
|
- `indices.breaker.total.use_real_memory` (Static, Boolean): If `true`, the parent circuit breaker considers the actual memory usage. Otherwise, the parent circuit breaker considers the amount of memory reserved by the child circuit breakers. Default is `true`.
|
||||||
|
|
||||||
- `indices.breaker.total.limit` (Dynamic, percentage): Specifies the initial memory limit for the parent circuit breaker. If `indices.breaker.total.use_real_memory` is `true`, defaults to 95% of the JVM heap. If `indices.breaker.total.use_real_memory` is `false`, defaults to 70% of the JVM heap.
|
- `indices.breaker.total.limit` (Dynamic, percentage): Specifies the initial memory limit for the parent circuit breaker. If `indices.breaker.total.use_real_memory` is `true`, defaults to 95% of the JVM heap. If `indices.breaker.total.use_real_memory` is `false`, defaults to 70% of the JVM heap.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue