gpt4 book ai didi

java - Log4j2 - 寻求一个无垃圾且异步日志记录的最小示例

转载 作者:太空宇宙 更新时间:2023-11-04 09:16:24 25 4
gpt4 key购买 nike

我正在尝试构建一个最小的程序示例,该程序使用 log4j2 并且既无垃圾又利用异步日志记录。我相信我已经遵循了他们的文档中讨论的所有准则,但我无法达到零(稳态)分配率。此处附加的工作为每个日志消息分配大约 60 个字节。

有没有人有这样的例子,或者,他们能看到我所做的错误。

更新:解决方案是使用 Unbox.box() on the primitive types ,这阻止了自动装箱以及相关的分配。下面的代码已更新。

代码:

public class Example {

static private final Logger logger = LogManager.getLogger(Example.class);

public static void main(String[] args) throws Exception {
int count = Integer.parseInt(args[0]);
System.gc();
Thread.sleep(10000);

for(int i = 0; i < count; i++) {
logSomething();
}
}

private static void logSomething() {
logger.info("{} occurred at {}, here is some useful info {}, here is some more {}.",
"AN_EVENT_I_WANT_TO_LOG", box(System.currentTimeMillis()), "ABCD", box(1234L));
}
}

Log4J2 配置:

<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<File name="File" fileName="/dev/null" append="false" immediateFlush="false" >
<PatternLayout pattern="%d %p %c{1.} [%t] %m %ex %map{} %n"/>
</File>
</Appenders>
<Loggers>
<Root level="info">
<AppenderRef ref="File"/>
</Root>
</Loggers>
</Configuration>

(相关)JVM 参数:

-Dlog4j2.garbagefreeThreadContextMap=true 
-Dlog4j2.enableThreadlocals=true
-Dlog4j2.enableDirectEncoders=true
-Dlog4j2.asyncLoggerWaitStrategy=yield
-Dlog4j2.contextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector

最佳答案

解决方案是使用 Unbox.box() 手动装箱原始值。这阻止了自动装箱和相关的分配。

上述问题中的代码已更新为正确的代码。

更新:在下面的代码中,我扩展了该解决方案,以说明使用消息对象进行无垃圾异步日志记录。准确地说,这意味着我可以将可重用的消息传递给记录器(因此不需要分配这些对象),可以更新消息而无需任何额外的分配,可以在不需要分配的情况下格式化消息,底层记录器不会进行任何进一步的分配,并且将其交给异步记录器是安全的(它将在传递到 logger.info() 时写入上下文,而不是异步记录器最终处理它时的上下文)。

我发布此更新是因为我在网络上找不到类似的内容。

代码:

public class ExtendedExample {

static class ApplicationEvent {
long identifier;
String detail;
long timestamp;

public ApplicationEvent initialize(long identifier, String detail, long timestamp) {
this.identifier = identifier;
this.detail = detail;
this.timestamp = timestamp;
return this;
}
}

static private final Logger logger = LogManager.getLogger();
public static void main(String[] args) throws Exception {
int count = Integer.parseInt(args[0]);
System.gc();
Thread.sleep(10000);

final ApplicationEvent event = new ApplicationEvent();
for(int i = 0; i < count; i++) {
event.initialize(i, "ABCD_EVENT", System.currentTimeMillis());
onApplicationEvent(event);
}
}


private static class ApplicationEventLogMessage extends ReusableObjectMessage {

private final String eventType = ApplicationEvent.class.getSimpleName();
private long eventTimestamp;
private String eventDetail;
private long eventIdentifier;

private final StringBuilderFormattable formattable = new StringBuilderFormattable() {
@Override
public void formatTo(StringBuilder buffer) {
buffer.append('{')
.append("eventType").append('=').append(eventType).append(", ")
.append("eventTimestamp").append('=').append(eventTimestamp).append(", ")
.append("eventDetail").append('=').append(eventDetail).append(", ")
.append("eventIdentifier").append('=').append(eventIdentifier)
.append('}');
}
};

ReusableObjectMessage prepare(ApplicationEvent applicationEvent){
// It is very important that we call set(), every time, before we pass this to the logger -
// as the logger will clear() it.
set(formattable);
eventTimestamp = applicationEvent.timestamp;
eventDetail = applicationEvent.detail;
eventIdentifier = applicationEvent.identifier;
return this;
}

}


final static ApplicationEventLogMessage reusableEventLogMessage = new ApplicationEventLogMessage();
private static void onApplicationEvent(ApplicationEvent applicationEvent) {
logger.info( reusableEventLogMessage.prepare(applicationEvent) );
}
}

关于java - Log4j2 - 寻求一个无垃圾且异步日志记录的最小示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58923278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com