我们的客户应用程序似乎挂起了以下堆栈跟踪:
java.lang.Thread.State: RUNNABLE at java.io.UnixFileSystem.getBooleanAttributes0(Native Method) at java.io.UnixFileSystem.getBooleanAttributes(Unknown Source) at java.io.File.isFile(Unknown Source) at org.tmatesoft.svn.core.internal.wc.SVNFileType.getType(SVNFileType.java:118) at org.tmatesoft.svn.core.internal.wc.SVNFileUtil.createUniqueFile(SVNFileUtil.java:299) - locked <0x92ebb2a0> (a java.lang.Class for org.tmatesoft.svn.core.internal.wc.SVNFileUtil) at org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor.createTempFile(SVNRemoteDiffEditor.java:415) at org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor.applyTextDelta(SVNRemoteDiffEditor.java:255)
任何人都知道什么可能导致它挂在isFile?
getBooleanAttributes0
电话stat
(或者stat64
,如果有的话).如果您有OpenJDK源代码,则会在文件中列出jdk/src/solaris/native/java/io/UnixFileSystem_md.c
.
所以真正的问题是,为什么要stat
冻结?例如,正在被访问的服务器上的文件是否被关闭?如果这是一个可重现的问题,您可能希望strace
在冻结之前使用附加到Java进程.然后查看输出中的调用stat
,以查看正在访问的内容.
看起来像是阻塞的stat
呼叫getBooleanAttributes0
.这通常是因为该文件位于已关闭的NFS共享上.