> From: rujin raj [mailto:[email protected]] > Subject: Re: Java out of memory error
> Windows 2008 ent Server 64 bit is installed. > Tomcat and JAVA are 32 bit You're never going to be able to run that many threads in a 32-bit process. Use a 64-bit JVM, or reduce the max threads count considerably. This has nothing to do with running out of heap space - you've exceeded the process space due to the excessive number of threads. You could reduce the heap and have room for more threads, but that might cause other problems. If you really need to run that large a workload, move to a 64-bit JVM. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
