Re: Socket problems under heavy load on Win2K

2001-06-29 Thread Fernando_Salazar
I think 61 is connection refused. My guess is that the accept() queue length is too small. Looking through Tomcat 4 source, it looks like the default accept backlog is 10. Possibly there's a way to increase it? You could always rebuild with a larger default. But if you are throwing a lot of

RE: Socket problems under heavy load on Win2K

2001-06-29 Thread Randy Layman
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, June 29, 2001 2:06 PM To: [EMAIL PROTECTED] Subject: Re: Socket problems under heavy load on Win2K The CLOSE_WAIT sockets may or may not be a problem ... one end of the connection has been

RE: Socket problems under heavy load on Win2K

2001-06-29 Thread GOMEZ Henri
The description is right, but the implications are wrong. Due to how TCP/IP works, these sockets will be closed by the OS within a few minutes. I know on some UNIXs you can set this at run time (i.e. Solaris) and some its a compile time directive (i.e. FreeBSD). I don't know about