On 12/7/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote:
Increase the max thread size on your tomcat context threadpool. It
looks to me like the log message is telling you a max of 10 is
currently allocated for this purpose now. (an abnormally low number)


If this is really only occuring with one or two users on the system,
10 threads should be enough, since no browser will open more than 2
connections to the server at any single instant.  It would appear that
something is preventing threads from returning to the pool as soon as
the request is completed. Bumping the max threads up to a higher
number will give you temporary relief, but doesn't fix the underlying
problem that is preventing you from reusing threads efficiently.  10
is a very low number, however, and you may well find that bumping the
number to 100 will instantly give you enough headroom that you never
see the problem again (with reasonable load, anyway).  But since this
is a hosted server, it is entirely possible you can't bump the
maxThreads number.  In that case, you can complain to your ISP or else
you will have to figure out why the threads aren't being reused.

--sam

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to