From b516963efe9a72221d619b7d68726d2734d99054 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 25 Mar 2024 16:35:37 +0000 Subject: [PATCH] Fix merge policy to restrict to OS 2.11+ in Big5 workload (#247) Signed-off-by: Ian Hoang Co-authored-by: Ian Hoang (cherry picked from commit dfe0395c74b244ee3b311108b68c5345b86b0ab6) Signed-off-by: github-actions[bot] --- big5/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/big5/index.json b/big5/index.json index 0061ad0c..46ecae99 100644 --- a/big5/index.json +++ b/big5/index.json @@ -10,7 +10,7 @@ "index.number_of_replicas": {{number_of_replicas | default(1)}}, "index.queries.cache.enabled": {{query_cache_enabled | default(false) | tojson}}, "index.requests.cache.enable": {{requests_cache_enabled | default(false) | tojson}}, - {% if distribution_version is not defined or distribution_version < 6.0 %} + {% if ( (distribution_version is not defined) or (distribution_version > 2.11 and distribution_version < 6.0) ) %} "index.merge.policy": "{{index_merge_policy | default('log_byte_size') }}", {% endif %} "index.codec": "best_compression",