Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are having recurring Weblogic threads hanging for 600+ seconds, or sometimes only for 30 seconds (which is just as bad) in seemingly trivial Java Reflection operations.

Thread dumps and WebLogic's own built-in alert on stuck thread all showing same native code, but no idea what could be causing it to hang for such long intervals (stuck thread below).

I noticed that message comes up, which is weird as JDK itself is jdk160_16.

This is on Solaris with Native I/O enabled, but maybe some other setting is wrong?

Various threads have different earlier code, but the stuck section is always the same:

"[STUCK] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=3 tid=0x01c2f000 nid=0x74 runnable [0x5bcfc000]
   java.lang.Thread.State: RUNNABLE
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
    at java.lang.Class.getConstructor0(Class.java:2699)
    at java.lang.Class.newInstance0(Class.java:326)
    at java.lang.Class.newInstance(Class.java:308)
    at sun.reflect.MethodAccessorGenerator$1.run(MethodAccessorGenerator.java:381)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.reflect.MethodAccessorGenerator.generate(MethodAccessorGenerator.java:377)
    at sun.reflect.MethodAccessorGenerator.generateMethod(MethodAccessorGenerator.java:59)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:28)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597) 
share|improve this question
Updated with more complete top-line showing ExecuteThread title as well, not sure if that's any help in determining what's wrong. – adir1 Jan 4 '11 at 22:34
I can just say that lately this problem disappeared all on it's own. So it remains a mystery for now, but thanks everyone for trying. – adir1 Mar 2 '11 at 5:20

1 Answer

There is a similar thread here:http://forums.oracle.com/forums/thread.jspa?threadID=677471 that may help you.

share|improve this answer
Sadly, it's not at all similar. That thread is clearly refers to threads stuck in Oracle JDBC interaction, which points to Oracle issue usually, or unoptimized query. – adir1 Jan 5 '11 at 19:35
that is one of the scenario I want to point you.May not be the same case for you.but just a pointer.Normally it happens when we deal with database connections – UVM Jan 6 '11 at 4:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.