diff --git a/.puppet/modules/profiles/manifests/elastic/elasticsearch.pp b/.puppet/modules/profiles/manifests/elastic/elasticsearch.pp index 17b213fa..6e83e9e8 100644 --- a/.puppet/modules/profiles/manifests/elastic/elasticsearch.pp +++ b/.puppet/modules/profiles/manifests/elastic/elasticsearch.pp @@ -20,9 +20,19 @@ class { 'elasticsearch': oss => true, version => $elasticsearch_revision, + # Commented out options is a workaround for https://github.com/elastic/puppet-elasticsearch/issues/1032 jvm_options => [ '-Xms256m', - '-Xmx256m' + '-Xmx256m', + '#PrintGCDetails', + '#PrintGCDateStamps', + '#PrintTenuringDistribution', + '#PrintGCApplicationStoppedTime', + "#Xloggc", + '#UseGCLogFileRotation', + "#NumberOfGCLogFiles", + "#GCLogFileSize", + "#XX:UseConcMarkSweepGC", ], } ->