Oscar Herrera <[EMAIL PROTECTED]> writes: > > I've kept on doing some research on what is causing my application to > hang out with an OutOfMemoryException and responding really slow under > some server load, my conclusion so far is that the MINA ThreadPool is > not working fine, I got to this after making several testing over my > server using JProfiler and observing as a pattern that under low load > (less than 70 users) the thread pool works fine and uses many threads > for the write operation, after this point (well not exactly, it changes > each time I test but 70 is a good average)
What is the -Xss, -Xmx settings ? If its not configured try -Xss128k or -Xss196k. To see how the heap are going, use: $JAVA_HOME/bin/jmap PID IT will show how the VM heap []s Claudio
