From 72b0c720439e9a0edd021ca4e92f77719a75b62c Mon Sep 17 00:00:00 2001 From: Andrew Ross Date: Tue, 10 Oct 2023 15:37:01 -0500 Subject: [PATCH] Add documentation for new recovery setting (#5162) Related to https://github.com/opensearch-project/OpenSearch/pull/10349 Signed-off-by: Andrew Ross Signed-off-by: Melissa Vagi --- _api-reference/cluster-api/cluster-settings.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_api-reference/cluster-api/cluster-settings.md b/_api-reference/cluster-api/cluster-settings.md index 095f4f82cc4..f7333349f5c 100644 --- a/_api-reference/cluster-api/cluster-settings.md +++ b/_api-reference/cluster-api/cluster-settings.md @@ -69,6 +69,7 @@ The following request field parameters are compatible with the cluster API. | indices.recovery.max_bytes_per_sec | String | Limits the total inbound and outbound recovery traffic for each node. This applies to peer recoveries and snapshot recoveries. Default is `40mb`. If you set the recovery traffic value to less than or equal to `0mb`, rate limiting will be disabled, which causes recovery data to be transferred at the highest possible rate. | | indices.recovery.max_concurrent_file_chunks | Integer | The number of file chunks sent in parallel for each recovery operation. Default is `2`. | | indices.recovery.max_concurrent_operations | Integer | The number of operations sent in parallel for each recovery. Default is `1`. | +| indices.recovery.max_concurrent_remote_store_streams | Integer | The number of streams to the remote repository that can be opened in parallel when recovering a remote store index. Default is `20`. | | logger.org.opensearch.discovery | String | Loggers accept Log4j2’s built-in log levels: `OFF`, `FATAL`, `ERROR`, `WARN`, `INFO`, `DEBUG`, and `TRACE`. Default is `INFO`. | | breaker.model_inference.limit | String | The limit for the trained model circuit breaker. Default is `50%` of the JVM heap. | | breaker.model_inference.overhead | Integer | The constant that all trained model estimations are multiplied by to determine a final estimation. Default is `1`. |