POST request hangs hup

2009-07-02 Thread Ivan Longhi
Hi, I'm running tomcat 6.0.18 with java 1.6.0_13 on a linux box. The only webapp deployed is Sun OpenSSO (http://www.opensso.org) built from source (20090930). Sometimes a tomcat thread hangs hup while serving a POST request (/UI/Login): monitoring tomcat status I see the processing time grows and

Re: POST request hangs hup

2009-07-02 Thread Daniel Henrique Alves Lima
On Thu, 2009-07-02 at 23:40 +0200, Ivan Longhi wrote: Hi, Hi, Ivan. I'm running tomcat 6.0.18 with java 1.6.0_13 on a linux box. The only webapp deployed is Sun OpenSSO (http://www.opensso.org) built from source (20090930). Sometimes a tomcat thread hangs hup while serving a POST

Re: POST request hangs hup

2009-07-02 Thread Daniel Henrique Alves Lima
is probably more guilt :-) On Thu, 2009-07-02 at 19:20 -0300, Daniel Henrique Alves Lima wrote: On Thu, 2009-07-02 at 23:40 +0200, Ivan Longhi wrote: Hi, Hi, Ivan. I'm running tomcat 6.0.18 with java 1.6.0_13 on a linux box. The only webapp deployed is Sun OpenSSO

RE: POST request hangs hup

2009-07-02 Thread Caldarale, Charles R
From: Ivan Longhi [mailto:ivan.lon...@gmail.com] Subject: POST request hangs hup Is there a way to kill a single thread in tomcat whitout restarting it? No. Is there a way to limit the max execution time for a single thread/request? No. You need to fix your webapp, since it has

Re: POST request hangs hup

2009-07-02 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Daniel, On 7/2/2009 6:20 PM, Daniel Henrique Alves Lima wrote: I think could be anything: An infinite loop in your app, a database (or other resource) deadlock, any intensive db query (with a really long transaction timeout). +1 Take a thread