What could be the cause of JVM thread dumps that show threads waiting to lock on a monitor, but the monitors do not have corresponding locking threads?
Java 1.5_14 on Windows 2003
|
What could be the cause of JVM thread dumps that show threads waiting to lock on a monitor, but the monitors do not have corresponding locking threads? Java 1.5_14 on Windows 2003 |
|||||
|
|
Did you ever get to the bottom of the problem? I also encountered the exact same problem on a CentOS box with 4CPUs, 2Gb of RAM, running JRE 1.5.0_09. The monitor that has no locking thread appears in 3 different places in my application, 2 of which are in the Sun JDK code and 1 in my application code. The lock in my application code is a ReentrantLock, the other two are normal synchronized{} blocks. It might be just a coincidence, but in all 3 cases the lock object was a static field in the class. Does that ring a bell to anyone? Could classloaders and GC have anything to do with it? |
|||
|
|
|
Does your code by any change use any JNI? (i.e. are you running any native code launched from Java?). We've seen a similar behavior, but JDK 1.6.0_05. App appears to deadlock, but Jstack shows threads waiting for a lock that no other threads are holding onto. We have some JNI code, so it's possible we're corrupting something. We haven't found a solution for this and the issue is only reproducible on 1 machine. |
|||
|
|
|
Do those waiting threads wait for ever, or do they eventually proceed? If the latter, it may be that the lock is held by the garbage collector. You can add the arguments Here's some information on garbage collection. |
||||
|
|
That's just a wild guess, but could it be, that a thread locks itself by trying to acquire a lock twice? Probably it would help if you could post some code. |
|||
|
|
|
Yes normally each monitor which is locked must have an owner Thread. Maybe your stack dump was not complete (too long) or maybe the dumping was not consistent. I could imagine that it is not stopping the world, so a locked monitor is dumped but the thread who owns the lock releases it before beeing dumped (this is just an guess). Can you some where upload the dump as a text file for easier searching, and tell us which monitor you are looking at. |
|||
|
|
|
I had a similar problem today, and it also involved accesses of static resources. The short version is that a class made GUI changes in a static block, and outside of the AWT-EventQueue thread, which were blocked by the AWT TreeLock, then the EventQueue made a reference to the blocked class, which forced it to wait on the class loader's monitor for that class. The key observation here is that the lock for the class loader did not show up as locked in the thread dump. The full answer can be found on this thread. |
|||
|
|
|
Have you tried upgrading to Java 1.6? A bug could be your issue if you're only on 1.5. |
|||
|
|