Skip to content

Commit

Permalink
Fix merge policy to restrict to OS 2.11+ in Big5 workload (#247)
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Hoang <hoangia@amazon.com>
Co-authored-by: Ian Hoang <hoangia@amazon.com>
(cherry picked from commit dfe0395)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and Ian Hoang committed Mar 25, 2024
1 parent b1ed29d commit b516963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion big5/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit b516963

Please sign in to comment.