-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Description
Describe the feature:
Elasticsearch version (bin/elasticsearch --version):
6.3.0
Plugins installed: []
JVM version (java -version):
1.8.0
OS version (uname -a if on a Unix-like system):
AIX ***** 1 7 00C7EE054C00
Description of the problem including expected versus actual behavior:
When trying to index a document using the rest high level client, we have the following error message
java.lang.NoClassDefFoundError: org.apache.logging.log4j.core.Appender because as we are using the logback we do not have the log4j-core dependency.
Steps to reproduce:
Please include a minimal but complete recreation of the problem, including
(e.g.) index creation, mappings, settings, query etc. The easier you make for
us to reproduce it, the more likely that somebody will take the time to look at it.
- Use logback with log4j-to-slf4j
- Use the
indexmethod onRestHighLevelClientwith andIndexRequest:
IndexRequest request = new IndexRequest(index, "doc", id);
request.source(source, XContentType.JSON);
highElasticClient.index(request);Provide logs (if relevant):
java.lang.NoClassDefFoundError: org.apache.logging.log4j.core.Appender
at org.elasticsearch.common.xcontent.LoggingDeprecationHandler.<clinit>(LoggingDeprecationHandler.java:45)
at org.elasticsearch.client.RestHighLevelClient.parseEntity(RestHighLevelClient.java:651)
at org.elasticsearch.client.RestHighLevelClient.lambda$performRequestAndParseEntity$2(RestHighLevelClient.java:508)
at org.elasticsearch.client.RestHighLevelClient$$Lambda$203.000000002585ACF0.apply(Unknown Source)
at org.elasticsearch.client.RestHighLevelClient.performRequest(RestHighLevelClient.java:539)
at org.elasticsearch.client.RestHighLevelClient.performRequestAndParseEntity(RestHighLevelClient.java:508)
at org.elasticsearch.client.RestHighLevelClient.index(RestHighLevelClient.java:348)
We have tried using this but as some of the classes in Loggers.java are actually coming from log4j-core they are nowhere to be found.
Any ideas on something we can try to have these operations working and logs redirected to logback ?
Thanks in advance