Re: thread deadlock problem

2004-03-21 Thread Antonio Fiol Bonnín
Christian Cryder wrote: This works perfectly about 99% of the time. What we are observing is that there are certain situations where we encounter a deadlock scenario (and that's what prompted my original question). Basically, req2a writes the redirect back to the client, the client receives the

RE: thread deadlock problem

2004-03-21 Thread Christian Cryder
PROTECTED] Sent: Sunday, March 21, 2004 3:42 AM To: Tomcat Users List Subject: Re: thread deadlock problem Christian Cryder wrote: This works perfectly about 99% of the time. What we are observing is that there are certain situations where we encounter a deadlock scenario (and that's what

thread deadlock problem

2004-03-19 Thread Christian Cryder
Hi folks, I need to know if someone can explain the following behavior: 1. client browser issues a request 2. tomcat servlet code starts handling the request... a. writes an html redirect to the resp, flushes the buffer, etc b. thread continues processing (writing to a data structure) 3.

RE: thread deadlock problem

2004-03-19 Thread Edson Alves Pereira
Why are you trying to do this kind of control? -- De: Christian Cryder[SMTP:[EMAIL PROTECTED] Responder:Tomcat Users List Enviada: sexta-feira, 19 de março de 2004 9:55 Para: Tomcat-User Assunto: thread deadlock problem Hi folks, I need to know

Re: thread deadlock problem

2004-03-19 Thread Hans
hi, is the thread mentioned in 2b the same as the one that handled 2a ? grtz Hans At 07:55 19/03/2004 -0500, you wrote: Hi folks, I need to know if someone can explain the following behavior: 1. client browser issues a request 2. tomcat servlet code starts handling the request... a. writes

RE: thread deadlock problem

2004-03-19 Thread Christian Cryder
-- Coffee? I could quit anytime, just not today -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 8:00 AM To: 'Tomcat Users List' Subject: RE: thread deadlock problem Why are you

RE: thread deadlock problem

2004-03-19 Thread Christian Cryder
could quit anytime, just not today -Original Message- From: Hans [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 8:21 AM To: Tomcat Users List Subject: Re: thread deadlock problem hi, is the thread mentioned in 2b the same as the one that handled 2a ? grtz Hans At 07

RE: thread deadlock problem

2004-03-19 Thread Hans
- From: Hans [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 8:21 AM To: Tomcat Users List Subject: Re: thread deadlock problem hi, is the thread mentioned in 2b the same as the one that handled 2a ? grtz Hans At 07:55 19/03/2004 -0500, you wrote: Hi folks, I need to know

RE: thread deadlock problem

2004-03-19 Thread Christian Cryder
-Original Message- From: Hans [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 9:33 AM To: Tomcat Users List Subject: RE: thread deadlock problem ok, and can you give some more details on the blocking code. I assume : ...check to see if data pipe still full ...timeout

RE: thread deadlock problem

2004-03-19 Thread Hans
://barracudamvc.org -- Coffee? I could quit anytime, just not today -Original Message- From: Hans [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 9:33 AM To: Tomcat Users List Subject: RE: thread deadlock problem ok, and can you give

Deadlock problem

2001-02-06 Thread EXT-Mezey, Peter
and -Xmx flags to 1GB. I know it's not running out of memory because I don't see that error message. I've tried tinkering with the PoolTcpConnector settings in server.xml to increase the number of threads to 200. That seemed to make it run faster, but still the deadlock problem. One bit

Re: Deadlock problem

2001-02-06 Thread Kurt Bernhard Pruenner
"EXT-Mezey, Peter" wrote: [Memory gobbled up fast by a search engine walking over JSP pages] Well, if it's the same problem we had here, I'd say it's the spider creating a new session with every request as it doesn't send back the session-id cookie; and since it does this much faster than the

Re: Deadlock problem

2001-02-06 Thread Chris Janicki
Check out bug# 4293268 on Sun's Java bug parade. It described a 1.3 threading bug that involves lost locks. I've had similar deadlock problem on a different app (not Tomcat) that went away when I downgraded to Java 1.2.2.5. It is an rare problem that most occurs when a system is under load