@StephenC 经过一些测试,当从java主方法中调用
RandomAccessFile.getChannel().tryLock()
时,在nfs4上运行正常,但当同样的代码在Tomcat(8.5.68)中运行时,会出现多锁。
好的。 所以我想我现在明白了你问题的根源。 从你所说的情况来看,它
sounds to me
就像你试图使用
FileLock
来阻止Tomcat JVM的一个线程锁定一个文件的某个部分,而另一个Tomcat线程则锁定了它。
这是不可能的。
你所使用的锁是一个
FileLock
。的一个关键段落。
javadoc
指出这一点。
文件锁是代表整个Java虚拟机持有的。
它们不适合控制同一虚拟机内多个线程对一个文件的访问。
.
在这种情况下,"不适合 "意味着 "不工作"。
如果你深入到Linux手册中的
flock (2)
(Java用它来实现这些锁)的页面,你会看到语义是以多进程而不是多线程来定义的。 比如说。
【替换代码4放置一个排他性的锁。 只有
one process
可以在特定的时间为一个特定的文件持有一个共享锁。
如果有一个不兼容的锁被
flock()
持有,那么对
flock()
的调用可能会阻塞。
另一个过程
.
So, in summary, it is still not Java's fault. You are trying to use
FileLock
in a way that Java doesn't support ... 和
could not
support, given how Linux (和 indeed POSIX)
flock
is specified.
(IMO,所有关于NFS的东西都是一个红鲱鱼。 上述问题不是由NFS引起的。 它的原因是
shows up
on an NFS file system, is that NFS operations take longer 和
therefore
对同一文件进行重叠操作的时间窗口要大得多。 而如果你的客户的用例是
锤击
their NFS ...)
(But if I am wrong 和 NFS is implicated, then your "main vs Tomcat" observation is inexplicable. The JVM will not be doing file locking differently in those two cases: it will be using the same OpenJDK code in both cases. Furthermore, the JVM won't even be aware that it is talking to an NFS file system. You can take a look at the OpenJDK codebase if you don't believe me. It's not that hard ...)
How to lock file for another threads
Is FileLock in java safe across multiple threads within the same process or between different processes or both?
和 so on.