From bdbe5ab7c7ec3b4f3cd42a6315e9dc6b228941fb Mon Sep 17 00:00:00 2001 From: Harsha Vamsi Kalluri Date: Mon, 1 Jul 2024 09:20:11 -0700 Subject: [PATCH] Update docs for new clause count setting (#7391) * Update docs for new clause count setting Signed-off-by: Harsha Vamsi Kalluri * Update to 2.16 Signed-off-by: Harsha Vamsi Kalluri * Update _install-and-configure/configuring-opensearch/index-settings.md Signed-off-by: Melissa Vagi * Update _install-and-configure/configuring-opensearch/index-settings.md Signed-off-by: Melissa Vagi * Update _install-and-configure/configuring-opensearch/index-settings.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi * Update _install-and-configure/configuring-opensearch/index-settings.md Signed-off-by: Melissa Vagi --------- Signed-off-by: Harsha Vamsi Kalluri Signed-off-by: Melissa Vagi Co-authored-by: Melissa Vagi Co-authored-by: Nathan Bower Signed-off-by: leanne.laceybyrne@eliatra.com --- _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 34b1829b78..a1894a0d2c 100644 --- a/_install-and-configure/configuring-opensearch/index-settings.md +++ b/_install-and-configure/configuring-opensearch/index-settings.md @@ -54,6 +54,8 @@ OpenSearch supports the following dynamic cluster-level index settings: - `indices.fielddata.cache.size` (String): The maximum size of the field data cache. May be specified as an absolute value (for example, `8GB`) or a percentage of the node heap (for example, `50%`). This value is static so you must specify it in the `opensearch.yml` file. If you don't specify this setting, the maximum size is unlimited. This value should be smaller than the `indices.breaker.fielddata.limit`. For more information, see [Field data circuit breaker]({{site.url}}{{site.baseurl}}/install-and-configure/configuring-opensearch/circuit-breaker/#field-data-circuit-breaker-settings). +- `indices.query.bool.max_clause_count` (Integer): Defines the maximum product of fields and terms that are queryable simultaneously. Before OpenSearch 2.16, a cluster restart was required in order to apply this static setting. Now dynamic, existing search thread pools may use the old static value initially, causing `TooManyClauses` exceptions. New thread pools use the updated value. Default is `1024`. + - `cluster.remote_store.index.path.type` (String): The path strategy for the data stored in the remote store. This setting is effective only for remote-store-enabled clusters. This setting supports the following values: - `fixed`: Stores the data in path structure `///`. - `hashed_prefix`: Stores the data in path structure `hash()////`.