From 82801e3a0bd3b5bcec6751a6e9d98dc910c75055 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 8 May 2024 18:45:09 +0000 Subject: [PATCH] feat: add index.search.default_pipeline setting (#7103) * feat: add index.search.default_pipeline setting Signed-off-by: Ian Menendez * Update _install-and-configure/configuring-opensearch/index-settings.md Signed-off-by: Heather Halter --------- Signed-off-by: Ian Menendez Signed-off-by: Heather Halter Co-authored-by: Heather Halter (cherry picked from commit d065bd539c98644e0753a878bed980a7efbf61a8) Signed-off-by: github-actions[bot] --- _install-and-configure/configuring-opensearch/index-settings.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_install-and-configure/configuring-opensearch/index-settings.md b/_install-and-configure/configuring-opensearch/index-settings.md index 8c367cb2d9..ea562b5a62 100644 --- a/_install-and-configure/configuring-opensearch/index-settings.md +++ b/_install-and-configure/configuring-opensearch/index-settings.md @@ -143,6 +143,8 @@ OpenSearch supports the following dynamic index-level index settings: - `index.search.idle.after` (Time unit): The amount of time a shard should wait for a search or get request until it goes idle. Default is `30s`. +- `index.search.default_pipeline` (String): The name of the search pipeline that is used if no pipeline is explicitly set when searching an index. If a default pipeline is set and the pipeline doesn't exist, then the index requests fail. Use the pipeline name `_none` to specify no default search pipeline. For more information, see [Default search pipeline]({{site.url}}{{site.baseurl}}/search-plugins/search-pipelines/using-search-pipeline/#default-search-pipeline). + - `index.refresh_interval` (Time unit): How often the index should refresh, which publishes its most recent changes and makes them available for searching. Can be set to `-1` to disable refreshing. Default is `1s`. - `index.max_result_window` (Integer): The maximum value of `from` + `size` for searches of the index. `from` is the starting index to search from, and `size` is the number of results to return. Default is 10000.