From 40589fa202396e0cb52d182798fcd75a9d675aee Mon Sep 17 00:00:00 2001 From: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Date: Mon, 12 Sep 2022 14:03:24 -0400 Subject: [PATCH] Renames async search settings (#1180) Signed-off-by: Fanit Kolchina Signed-off-by: Fanit Kolchina --- _search-plugins/async/settings.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_search-plugins/async/settings.md b/_search-plugins/async/settings.md index 31bbeb1692..306b92dc61 100644 --- a/_search-plugins/async/settings.md +++ b/_search-plugins/async/settings.md @@ -15,15 +15,15 @@ For example, to update the retention period of the result index: PUT _cluster/settings { "transient": { - "opensearch.asynchronous_search.max_wait_for_completion_timeout": "5m" + "plugins.asynchronous_search.max_wait_for_completion_timeout": "5m" } } ``` Setting | Default | Description :--- | :--- | :--- -`opensearch.asynchronous_search.max_search_running_time` | 12 hours | The maximum running time for the search beyond which the search is terminated. -`opensearch.asynchronous_search.node_concurrent_running_searches` | 20 | The concurrent searches running per coordinator node. -`opensearch.asynchronous_search.max_keep_alive` | 5 days | The maximum amount of time that search results can be stored in the cluster. -`opensearch.asynchronous_search.max_wait_for_completion_timeout` | 1 minute | The maximum value for the `wait_for_completion_timeout` parameter. -`opensearch.asynchronous_search.persist_search_failures` | false | Persist asynchronous search results that end with a search failure in the system index. +`plugins.asynchronous_search.max_search_running_time` | 12 hours | The maximum running time for the search beyond which the search is terminated. +`plugins.asynchronous_search.node_concurrent_running_searches` | 20 | The concurrent searches running per coordinator node. +`plugins.asynchronous_search.max_keep_alive` | 5 days | The maximum amount of time that search results can be stored in the cluster. +`plugins.asynchronous_search.max_wait_for_completion_timeout` | 1 minute | The maximum value for the `wait_for_completion_timeout` parameter. +`plugins.asynchronous_search.persist_search_failures` | false | Persist asynchronous search results that end with a search failure in the system index.