Merge "Increase the queue_size of pending request to 1000"

This commit is contained in:
Jenkins 2015-05-29 15:32:33 +00:00 committed by Gerrit Code Review
commit 79a80a75fe
1 changed files with 4 additions and 3 deletions

View File

@ -45,9 +45,10 @@ if $elasticsearch_kibana['node_name'] == hiera('user_node_name') {
# Start an instance of elasticsearch
elasticsearch::instance { $es_instance:
config => {
'bootstrap.mlockall' => true,
'http.cors.allow-origin' => '/.*/',
'http.cors.enabled' => true
'threadpool.bulk.queue_size' => '1000',
'bootstrap.mlockall' => true,
'http.cors.allow-origin' => '/.*/',
'http.cors.enabled' => true
},
}