java.lang.NoClassDefFoundError: ch/qos/logback/classic/spi/LoggingEvent

8,308 views
Skip to first unread message

Przemo T

unread,
Dec 20, 2016, 8:29:37 PM12/20/16
to vert.x
Hi guys,

I'm getting the following error from time to time. Usually under heavy load.
Using vertx 3.3.3.

Exception in thread "vert.x-acceptor-thread-0" java.lang.NoClassDefFoundError: ch/qos/logback/classic/spi/LoggingEvent
        at ch.qos.logback.classic.Logger.buildLoggingEventAndAppend(Logger.java:419)
        at ch.qos.logback.classic.Logger.filterAndLog_0_Or3Plus(Logger.java:383)
        at ch.qos.logback.classic.Logger.warn(Logger.java:692)
        at io.netty.util.internal.logging.Slf4JLogger.warn(Slf4JLogger.java:151)
        at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:876)
        at java.lang.Thread.run(Thread.java:745)

I don't think I'm able to provide reproducer.

Anyone encountered something similar?

Przemo T

unread,
Dec 20, 2016, 11:51:42 PM12/20/16
to vert.x
That error breaks acceptor thread. Problem has several aspects.
- The real problem seems to be "Too many open files" exception. I guess that explains why you need heavy load to reproduce.
- SingleThreadEventExecutor tries to log that exception but gets NoClassDefFoundError (though classes seems to be on classpath).

Probably found a workaround - to create instances of ch.qos.logback.classic.spi.LoggingEvent and ThrowableProxy before vertx is created. Need to take deeper look at classloading.

Clement Escoffier

unread,
Dec 21, 2016, 7:18:08 AM12/21/16
to ve...@googlegroups.com
Hi,

It looks like you have SLF4J in your classpath, so Netty uses SLF4J to log messages. However, slf4j is configured to use logback and logback is not in your classpath.

Clement




--
You received this message because you are subscribed to the Google Groups "vert.x" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vertx+un...@googlegroups.com.
Visit this group at https://groups.google.com/group/vertx.
To view this discussion on the web, visit https://groups.google.com/d/msgid/vertx/4b64768b-049c-4538-8700-d160b5af46dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Jez P

unread,
Dec 21, 2016, 9:02:17 AM12/21/16
to vert.x
What OS are you running on? 

Przemo T

unread,
Dec 21, 2016, 1:08:05 PM12/21/16
to vert.x
As I mentioned, I added workaround to created objects of missing classes before vertx is created. So the classes are there.

Przemo T

unread,
Dec 21, 2016, 1:20:28 PM12/21/16
to vert.x
I'm running my java application in docker built from openjdk-8u102-jre image (Debian GNU/Linux 8 (jessie)).
Docker is running on Amazon Linux AMI (which I guess evolved from RHEL and CentOS).

I start my application as java process (java -jar ...). It is fat jar created by spring boot. Spring boot is configured to use logback (via logback-spring.xml). I also use lib logstash-logback-encoder to produce output in logstash json format.
I set property System.setProperty("vertx.logger-delegate-factory-class-name", "io.vertx.core.logging.SLF4JLogDelegateFactory").
Reply all
Reply to author
Forward
0 new messages