From f7c86d1aa4c7e399325f2d59f1a4be27ca4ed58d Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Mon, 18 Jun 2018 14:20:49 +0100 Subject: [PATCH] Remove duplicate elasticsearch search threads config This prevents elasticsearch from starting up and seems to have been accidentally introduced in [1]. This change takes the increased thread count from [1] and removes the duplicate entry. [1] https://github.com/openstack/openstack-ansible-ops/commit/5537e8b3784b318c55c797c786413b3a5a847cb1 Change-Id: Ibfc5f57540bfc348e0480ca5f22b9bf7046f4829 --- elk_metrics_6x/templates/elasticsearch.yml.j2 | 3 --- 1 file changed, 3 deletions(-) diff --git a/elk_metrics_6x/templates/elasticsearch.yml.j2 b/elk_metrics_6x/templates/elasticsearch.yml.j2 index a22e74d9..4563bf98 100644 --- a/elk_metrics_6x/templates/elasticsearch.yml.j2 +++ b/elk_metrics_6x/templates/elasticsearch.yml.j2 @@ -96,9 +96,6 @@ gateway.recover_after_nodes: {{ ((master_node_count | int) // 2) + 1 }} # {% set thread_pool_size = ansible_processor_cores * ((ansible_processor_threads_per_core > 0) | ternary(ansible_processor_threads_per_core, 1)) %} thread_pool: - search: - size: {{ thread_pool_size }} - queue_size: {{ thread_pool_size * 64 }} search: size: {{ thread_pool_size }} queue_size: {{ thread_pool_size * 256 }}