log4j在Java开发中非常广泛,在企业级应用中,有大量的日志需要记载,我们有一个系统每天记录的日志达到16G,是个庞大的数字。
我们在开发过程中发现类似下列的代码:
public class TTTT extends HttpServlet{
private static final Log log = LogFactory.getLog(TTTT.class);
/**
* Servlet GET request: handles event requests.
*/
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
log.infor("Enter the servlet");
....
....
}
}
我们在性能测试中发现,这个servlet运行时间非常长,有点奇怪,我们使用Memcached进行了Cache,为什么会这么慢,后来发现log.infor导致了大并发问题出现,请看log4j源码:
public
void callAppenders(LoggingEvent event) {
int writes = 0;
for(Category c = this; c != null; c=c.parent) {
// Protected against simultaneous call to addAppender, removeAppender,...
synchronized(c) {
if(c.aai != null) {
writes += c.aai.appendLoopOnAppenders(event);
}
if(!c.additive) {
break;
}
}
}
if(writes == 0) {
repository.emitNoAppenderWarning(this);
}
}
看这段可以发现,log4j为了保证线程安全,使用了锁机制,synchronized是排它锁,因此在高并发时候,会导致大量的线程只能排队处理,吞吐量下降会非常快。在本例中,log变量是多个线程共享访问的(因为Servlet是单例),为了保证线程安全只能加锁,但是这个如何解决呢,日志总是要记录的,我现在需要做个测试,看看有没有解决方法。
[测试结果]
笔者用Jmeter分别测试了是否有可能servlet的共享变量log是不是会引起性能的变化:
Servlet1:
public class LogServlet extends HttpServlet{
Logger logger = Logger.getLogger(LogServlet.class);
/**
* Servlet GET request: handles event requests.
*/
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
}
}
Servlet2:
public class LogServletNotShare extends HttpServlet{
/**
* Servlet GET request: handles event requests.
*/
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
Logger logger = Logger.getLogger(LogServletNotShare.class);
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
logger.info("Test whether the shared logger variable can impact the performance");
}
}
笔者采用Jmeter500个并发测试这两个servelt,吞吐量对比如下:
servlet1 第一次 第二次 第三次 第四次 第五次
34.1/sec 36.7/sec 38.7/sec 41.2/sec 40.3/sec
servlet2 第一次 第二次 第三次 第四次 第五次
40.5/sec 40.9/sec 41.3/sec 41.7/sec 40.3/sec
由此可见,log4j的性能与servlet的共享变量关系不是很明显,应该还是IO有关系
分享到:
相关推荐
下面我们将从配置文件类型、核心JAR包、文件渲染和Log调用四个方面来比较Log4j和Log4j2的区别。 配置文件类型 Log4j通过一个.properties文件作为主配置文件,而Log4j2则弃用了这种方式,采用的是.xml、.json或者....
Log4j是一个广泛使用的Java日志记录框架,它允许开发者在应用程序中轻松地记录各种级别的日志信息,如DEBUG、INFO、WARN、ERROR等。在2021年底,一个重大的安全漏洞(CVE-2021-44228)被发现在Log4j2的早期版本中,...
针对Log4j 2 远程代码执行漏洞,需要用到的升级资源包,适用于maven资源库,包括log4j,log4j-core,log4j-api,log4j-1.2-api,log4j-jpa等全套2.15.0 maven资源库jar包。如果是maven本地仓库使用,需要将zip包解压...
### Log4j2简介 Log4j2是Apache软件基金会推出的日志框架,它是Log4j 1.x的重构版本,旨在提供更为高效且灵活的日志解决方案。与Log4j 1.x相比,Log4j2在设计上进行了重大改进,并解决了Logback等其他日志框架中...
apache-log4j-1.2.15.jar, apache-log4j-extras-1.0.jar, apache-log4j-extras-1.1.jar, apache-log4j.jar, log4j-1.2-api-2.0.2-javadoc.jar, log4j-1.2-api-2.0.2-sources.jar, log4j-1.2-api-2.0.2.jar, log4j-...
分别有disruptor-3.3.4.jar(Log4j2异步日志的底层实现)、log4j-api-2.19.0.jar(log4j门面)、log4j-core-2.19.0.jar(log4j实现)、log4j-slf4j-impl-2.19.0.jar(SLF4J与Log4j绑定)、slf4j-api-1.7.30.jar(SLF...
Log4j、Log4j2和Fastjson的安全性问题在过去曾引起广泛关注,例如Log4j2的CVE-2021-44228(也被称为Log4Shell漏洞),这是一个远程代码执行漏洞,影响了许多使用Log4j2的系统。这个插件可能就是为了检测和利用这些...
此次提及的`log4j-api-2.12.4.jar`和`log4j-core-2.12.4.jar`是Log4j 2框架的两个关键组件,版本号为2.12.4,这个版本主要修复了之前版本中可能存在的安全漏洞。 **log4j-api-2.12.4.jar** 是Log4j 2框架的API模块...
Apache log4j2零日漏洞,根据 log4j-2.15.0-rc2 版本编译生成log4j-api-2.15.0.jar 1.解压你的jar jar xvf XXX.jar 2. 删除旧版本jar cd ./BOOT-INF/lib rm -rf log4j-api-*.jar 3. 上传新版本log4j-api-2.15.0....
Log4j和Log4j2是两种广泛使用的Java日志框架,它们提供了灵活的日志配置和高性能的日志处理能力。本文将详细介绍如何在SpringBoot项目中配置Log4j和Log4j2。 ### SpringBoot与Log4j Log4j是Apache的一个开源项目,...
2. **配置Log4j**:在项目的类路径下创建`log4j.properties`或`log4j.xml`配置文件,指定日志级别、输出目的地等。例如: ```properties # log4j.properties log4j.rootLogger=DEBUG, stdout log4j.appender....
apache下载太慢,特搬到国内下载。修复log4j漏洞log4j2下载最新log4j2.16.0下载
《深入理解log4j-api-2.17.1.jar与log4j-core-2.17.1.jar》 在Java开发中,日志管理是不可或缺的一部分,它帮助我们跟踪程序运行状态、定位错误和调试问题。Log4j作为一款广泛使用的日志框架,历经多次迭代,现在...
四、在 Maven 项目中引入 Log4j 依赖 在 Maven 项目中,需要引入 Log4j 依赖项,以便使用 Log4j。下面是一个基本的 Maven 依赖项配置: ``` <groupId>log4j <artifactId>log4j <version>1.2.16 ``` 这个配置...
标题提及的是"log4j-API-最新稳定版本log4j-1.2.17",这表明我们关注的是日志框架Log4j的一个特定版本,即1.2.17。Log4j是Apache软件基金会开发的一个用于Java应用程序的日志记录工具,它提供了灵活的日志记录功能,...
Log4j 是一个日志记录框架,Log4j 2 是对 Log4j 的升级,提供了重大改进,超越其前身 Log4j 1.x,并提供许多其它现代功能 ,例如对标记的支持、使用查找的属性替换、lambda 表达式与日志记录时无垃圾等。 Apache ...
《log4j-2.18.0:修复重大安全漏洞的紧急更新》 在IT领域,安全性始终是首要关注的问题。近期,一个名为“log4j2”的严重安全漏洞引发了广泛关注,它影响了所有log4j2版本,从2.0开始直到2.18.0版本之前。这个漏洞...
**日志框架Log4j详解** 在Java开发中,日志记录是一项不可或缺的功能,它能够帮助开发者追踪程序运行状态,定位错误,优化性能,并为后期维护提供重要信息。Log4j是Apache组织开发的一个强大的、灵活的日志记录框架...
**日志框架Log4j详解** Log4j是Apache组织提供的一款开源的日志记录框架,广泛应用于Java应用程序中。在给定的压缩包文件中,包含的是Log4j的1.2.17版本,这是一个相对较为老旧但仍然被许多项目使用的版本。此版本...
Apache log4j2零日漏洞,根据 log4j-2.15.0-rc2 版本编译生成log4j-api-2.15.0.jar 1.解压你的jar jar xvf XXX.jar 2. 删除旧版本jar cd ./BOOT-INF/lib rm -rf log4j-api-*.jar 3. 上传新版本log4j-api-...