Skip to main content

Create a stuck thread (Weblogic)(J2SE)(1.5)



I need to test WLST script that checks for stuck threads across some managed instances on a weblogic deployment. Unfortunately when I need to test, I am unable to get my stuck thread problem to rear its head. How can I intentionally create a stuck thread to test my script's detection with? My thoughts presently have been to sleep a thread for more than my stuck thread limit on Weblogic's settings, but that is also longer than the timeout for webpages. So my request should timeout before the thread ever becomes stuck. Apache commons executor is another idea... Does anyone have an elegant solution to reproducing this ugly issue?




Comments

  1. First, you should never create threads in a JEE environment, it's forbidden by the specification. If your apps are doing this, you'll always have problems.

    Anyway, a "stuck thread" is a little ambiguous. You can you put in into an infinite loop:

    while(true){
    try{
    Thread.sleep(1000);
    } catch (Exception e){
    break;
    }
    }


    or you could lock it on a monitor:

    while (true){
    new Object().wait();
    }

    ReplyDelete
  2. If you want to have a stuck thread you can simply suspend it

    synchronized(this){
    wait();
    }

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?