codelibs/elasticsearch-cluster-runner

Specifying jvm.options file

Opened this issue · 2 comments

Just wondering if there is a way to specify the jvm.options file (or another way to set e.g Xms / Xmx), since the execute() method seems to look for the elasticsearch.yml and log4j2.properties, but not for the jvm.options file ? Thanks

ElasticsearchClusterRunner is invoked from inside your Java application.
Java settings specified at your application are applied to elasticsearch.
So, jvm.options file is not needed.

Ok, thank you for your swift reply.