Re: Freeing processors

2003-08-14 Thread Mauricio Nuñez
Hi With RH 8, you can see the threads using the option -m Att Mauricio El Jue 07 Ago 2003 09:17, Jon Wingfield escribió: Yep. Since RH 8 the ps command only shows the main java process. In previous versions ps showed the parent process and a child process for each thread the java app

Re: Freeing processors

2003-08-14 Thread Daniel Carlsson
: Freeing processors Hi the HttpConnector haa a connectionTimeout parameter. Set this to a low razonable value, as 2 ( 20 seconds ) I was having a similar problem, using the JkConnector, but because my app wasn't releasing db connections to the dbcp pool. Then, the run out of processors

Re: Freeing processors

2003-08-14 Thread Jon Wingfield
-Ursprungligt meddelande- Från: Mauricio Nuñez [EMAIL PROTECTED] Skickat: 2003-08-07 16:51:56 Till: Tomcat Users List Ämne: Re: Freeing processors Hi the HttpConnector haa a connectionTimeout parameter. Set this to a low razonable value, as 2 ( 20 seconds ) I was having a similar

Re: Freeing processors

2003-08-09 Thread Jon Wingfield
Yep. Since RH 8 the ps command only shows the main java process. In previous versions ps showed the parent process and a child process for each thread the java app spawned. The previous behaviour often lead to confusion relating to memory assignment so i guess that's why RH changed it.

Freeing processors

2003-08-09 Thread Daniel Carlsson
Hi My problem is that tomcat runs out of processors and I see No processor available, rejecting this connection in the log file. By reading earlier posts a I understand that each processor is a thread and is not freed until it is returned by my code, my code is hanging somewhere. The

Re: Freeing processors

2003-08-08 Thread Mauricio Nuñez
Hi the HttpConnector haa a connectionTimeout parameter. Set this to a low razonable value, as 2 ( 20 seconds ) I was having a similar problem, using the JkConnector, but because my app wasn't releasing db connections to the dbcp pool. Then, the run out of processors ... is more a signal

RE: Freeing processors

2003-08-08 Thread Donaldson Sgt Michael J
I have a question along these lines... I am running jakarta-tomcat-4.1.18 on 4 different severs. 3 are Red Hat 8.0 and 1 Red Hat 6.2. Same tomcat configuration on all of them. ps -el shows one java process on the Red Hat 8.0 but on the 6.2 box I have upward of 30 processes for java. Is there a

Re: Freeing processors

2003-08-08 Thread Jon Wingfield
Thanks for the info. I should have RTFM ;) Mauricio Nuñez wrote: Hi With RH 8, you can see the threads using the option -m Att Mauricio El Jue 07 Ago 2003 09:17, Jon Wingfield escribió: Yep. Since RH 8 the ps command only shows the main java process. In previous versions ps showed the

Freeing processors

2003-08-07 Thread Daniel Carlsson
Hi My problem is that tomcat runs out of processors and I see No processor available, rejecting this connection in the log file. By reading earlier posts a I understand that each processor is a thread and is not freed until it is returned by my code, my code is hanging somewhere. The problem