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 <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2018-07-23 14:33:39 -05:00 committed by Kevin Carter (cloudnull)
parent 73b0858b5f
commit 2853b68712

View File

@ -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