exclude 'commons-logging:commons-logging'
}
// Be aware that Log4j is used by Elasticsearch client
- dependencySet(group: 'org.apache.logging.log4j', version: '2.8.2') {
+ dependencySet(group: 'org.apache.logging.log4j', version: '2.15.0') {
+ entry 'log4j-core'
entry 'log4j-api'
entry 'log4j-to-slf4j'
- entry 'log4j-core'
}
dependencySet(group: 'org.apache.tomcat.embed', version: '8.5.72') {
entry 'tomcat-embed-core'
entry 'jetty-servlet'
}
dependency('org.elasticsearch.client:elasticsearch-rest-high-level-client:7.14.1') {
- exclude 'commons-logging:commons-logging'
+ exclude 'org.apache.logging.log4j:log4j-core'
}
dependency 'org.elasticsearch.plugin:transport-netty4-client:7.14.1'
dependency 'org.elasticsearch:mocksocket:1.0'
compile 'org.apache.logging.log4j:log4j-api'
compile 'org.elasticsearch.client:elasticsearch-rest-high-level-client'
compile 'org.elasticsearch:elasticsearch'
- compile 'org.elasticsearch:elasticsearch-core'
compile 'org.slf4j:slf4j-api'
compile 'org.yaml:snakeyaml'
// specify an alternative path for JVM fatal error logs (ES 6.6.1 default is "logs/hs_err_pid%p.log")
res.put("-XX:ErrorFile=", "../logs/es_hs_err_pid%p.log");
- // JDK 8 GC logging (by default ES 6.6.1 enables them, we don't want to do that in SQ, no one will analyze them anyway)
- // res.put("8:-XX:+PrintGCDetails", "");
- // res.put("8:-XX:+PrintGCDateStamps", "");
- // res.put("8:-XX:+PrintTenuringDistribution", "");
- // res.put("8:-XX:+PrintGCApplicationStoppedTime", "");
- // res.put("8:-Xloggc:logs/gc.log", "");
- // res.put("8:-XX:+UseGCLogFileRotation", "");
- // res.put("8:-XX:NumberOfGCLogFiles", "32");
- // res.put("8:-XX:GCLogFileSize", "64m");
- // JDK 9+ GC logging
- // res.put("9-:-Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m", "");
}
/**
// log4j 2
res.put("-Dlog4j.shutdownHookEnabled=", "false");
res.put("-Dlog4j2.disable.jmx=", "true");
+ res.put("-Dlog4j2.formatMsgNoLookups=", "true");
/*
* Due to internationalization enhancements in JDK 9 Elasticsearch need to set the provider to COMPAT otherwise time/date
* parsing will break in an incompatible way for some date patterns and locales.
EsJvmOptions underTest = new EsJvmOptions(new Props(properties), tmpDir);
assertThat(underTest.getAll())
- .containsExactly(
+ .containsExactlyInAnyOrder(
"-XX:+UseG1GC",
"-Djava.io.tmpdir=" + tmpDir.getAbsolutePath(),
"-XX:ErrorFile=../logs/es_hs_err_pid%p.log",
"-Dio.netty.allocator.numDirectArenas=0",
"-Dlog4j.shutdownHookEnabled=false",
"-Dlog4j2.disable.jmx=true",
+ "-Dlog4j2.formatMsgNoLookups=true",
"-Djava.locale.providers=COMPAT",
"-Dcom.redhat.fips=false",
"-Des.enforce.bootstrap.checks=true");
"-Dio.netty.allocator.numDirectArenas=0\n" +
"-Dlog4j.shutdownHookEnabled=false\n" +
"-Dlog4j2.disable.jmx=true\n" +
+ "-Dlog4j2.formatMsgNoLookups=true\n" +
"-Djava.locale.providers=COMPAT\n" +
"-Dcom.redhat.fips=false\n" +
"-Des.enforce.bootstrap.checks=true\n" +