2

突然之间,我们在系统中遇到了以下错误。原因:java.io.FileNotFoundException: /web/wasapps/EventLog.log (打开的文件太多)

我假设有一些文件没有关闭,但我无法找到导致泄漏的 java 文件。请帮助我。

无限设置如下:

time(seconds)        unlimited
file(blocks)         unlimited
data(kbytes)         unlimited
stack(kbytes)        unlimited
memory(kbytes)       32768
coredump(blocks)     unlimited
nofiles(descriptors) 2000
threads(per process) unlimited
processes(per user)  unlimited

堆栈跟踪 :

SystemErr R 引起:java.io.FileNotFoundException:/web/wasapps/EventLog.log(打开的文件太多)

at java.io.FileOutputStream.openAppend(Native Method)
at java.io.FileOutputStream.<init>(FileOutputStream.java:203)
at java.io.FileOutputStream.<init>(FileOutputStream.java:128)
at com.abc.ci.common.LogManager.writeIntoFile(Unknown Source)
at com.abc.ci.common.LogManager.writeLogFile(Unknown Source)
at com.abc.ci.common.LogManager.handleEvent(Unknown Source)
at com.abc.ci.RANdc.common.CIFAdapter.postRequestForHashMap(Unknown Source)
at com.abc.ci.RANdc.UserInqDataTranslator.translate(Unknown Source)
at com.abc.ci.RANdc.UserInqProcessor.UserInq(UserInqProcessor.java:187)
at com.abc.ci.RANdc.srvprov.UserInqXYHostSrvProv.executeService(Unknown Source)
at com.abc.fiapi.common.XYHostServiceExecutor.execute(Unknown Source)
at com.abc.ci.RAN.ejb.RANModuleEJBBean.executeService(Unknown Source)
at com.abc.ci.srvprov.FRANModuleBeanLookUpServiceProvider.executeService(Unknown Source)
at com.abc.ci.abc.app.abcServiceExecutor.executeService(Unknown Source)
at com.abc.ci.abc.app.abcMessageExecutor.executeService(Unknown Source)
at com.abc.ci.abc.app.abcMessageExecutor.executeMessage(Unknown Source)
at com.abc.ci.abc.app.abcSyncMessageExecutor.processMessage(Unknown 
4

1 回答 1

0

jstack ( http://docs.oracle.com/javase/1.5.0/docs/tooldocs/share/jstack.html ) 也可以帮助确定问题所在。lsof将为您提供 pid,您可以运行jstack < pid >以转储所有线程的堆栈跟踪。假设您在某个循环中打开文件,您可能会捕获一个堆栈,该堆栈显示如果您使用几个 jstacks 的位置。

另一种解决方案是使用 JMockit ( http://jmockit.googlecode.com ) 之类的东西来模拟 FileOutputStream 构造函数,以便在打开文件时转储​​堆栈。只需将此代码添加到您的主要方法中:

final String TARGET_FILE = "/web/wasapps/EventLog.log";
new MockUp<FileOutputStream>()
{
    @Mock
    public $init(Invocation i, String name)
    {
        if (name.equals(TARGET_FILE))
        {
            new Exception().printStackTrace();
        }

        i.proceed();
    }
};
于 2013-03-07T23:25:20.157 回答