[kbn-es] Increase ES heap (#97905)

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
Tyler Smalley 2021-04-21 15:37:44 -07:00 committed by GitHub
parent 0a0fd695d3
commit c59d0ddeef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -272,7 +272,7 @@ exports.Cluster = class Cluster {
// especially because we currently run many instances of ES on the same machine during CI
options.esEnvVars.ES_JAVA_OPTS =
(options.esEnvVars.ES_JAVA_OPTS ? `${options.esEnvVars.ES_JAVA_OPTS} ` : '') +
'-Xms1g -Xmx1g';
'-Xms2g -Xmx2g';
this._process = execa(ES_BIN, args, {
cwd: installPath,