Skip to content

Commit

Permalink
Fix merge policy to restrict to OS 2.11+ in Big5 workload
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Hoang <[email protected]>
  • Loading branch information
Ian Hoang committed Mar 22, 2024
1 parent 47be332 commit 63660b0
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 63660b0

Please sign in to comment.