Details
Description
In certain fields like finance, predictable latency is very important, and applications in this space tend to carefully manage their object allocation to avoid unpredictable GC pauses. As of 2.5, Log4j is not suitable to be included in such applications since it allocates new objects while running in its steady state.
This ticket is to investigate the feasibility of modifying some key components in Log4j to provide a configuration that does not allocate new objects in its steady state. (Initialization or shutdown don't need to be allocation-free.)
To clarify, I am not proposing to make all of Log4j allocation-free. My goal is to create an allocation-free execution path in Log4j with some reasonable subset of the Log4j functionality. For example, make logging garbage-free if all of these conditions are met:
- all loggers are AsyncLoggers
- you only use the RandomAccessFileAppender
- you only use a PatternLayout without any regular expression replacements, without lookups and with one of the pre-defined date formats.
Further restrictions may be necessary.
Update:
The scope has been expanded to
- include both synchronous and asynchronous loggers
- include the most common appenders: console, file and random access file appender (both with rolling variants)
The tickets below list separate pieces of work necessary to accomplish this.
Attachments
Issue Links
- is related to
-
LOG4J2-3473 Provide garbage-free default disruptor WaitStrategy
- Closed
- relates to
-
LOG4J2-1116 Web app-friendly thread locals for gc-free logging (was: upgrade to log4j2 causes too frequent minor gc)
- Open