From 2853b68712c28ea20ae42fa7dfeb5cc3ccbf5126 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Mon, 23 Jul 2018 14:33:39 -0500 Subject: [PATCH] Update sharding based on data-nodes Sharding should be reflective of the data-nodes within the environment. Change-Id: I353e297ff2f952214fc8876c2330d690b6597ba8 Signed-off-by: Kevin Carter --- elk_metrics_6x/templates/_include_setup_template.yml.j2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/elk_metrics_6x/templates/_include_setup_template.yml.j2 b/elk_metrics_6x/templates/_include_setup_template.yml.j2 index 84820180..a9b8ec09 100644 --- a/elk_metrics_6x/templates/_include_setup_template.yml.j2 +++ b/elk_metrics_6x/templates/_include_setup_template.yml.j2 @@ -1,4 +1,4 @@ -{% set shards = ((groups["elastic-logstash"] | length) * 3) | int %} +{% set shards = ((data_nodes | length) * 3) | int %} # Elasticsearch template settings setup.template.settings: @@ -10,9 +10,9 @@ setup.template.settings: number_of_shards: {{ shards }} codec: best_compression # This provides for an index split of up to 2 times the number of available shards - number_of_routing_shards: {{ (shards | int) * 2 * (groups["elastic-logstash"] | length) }} + number_of_routing_shards: {{ (shards | int) * 2 }} # A dictionary of settings for the _source field. For more details, please check # https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html - #_source: - #enabled: false + _source: + enabled: true