RE: OutOfMemory Exception

2009-05-14 Thread Caldarale, Charles R
> From: Ramprasad Venkata Inala [mailto:rin...@cordys.com] > Subject: OutOfMemory Exception > > I have been using Tomcat6.1 There's no such level; what are you really running? Also, what JVM are you using? > The memory size of process has hit high and doesn't come down at all. And a heap prof

Re: OutOfMemory exception when deploying using manager app / catalina-ant

2007-06-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chris, Chris Jölly wrote: > removing and deploying the war works, but after a few removals/deployments > the vm reports an java.lang.OutOfMemory exception and stops > deployment of the application. if i increase the memory size > of the tomcat vm t

Re: OutOfMemory Exception

2005-10-17 Thread Alain Gaeremynck
I think the out of memory is due to the fact that there is no way to unload a class loader from memory. When you restart a context it creates onother class loader for the context and thus after a while pouf no more memory.. I'm pretty sure i saw that somewhere t.n.a. wrote: David Delb

Re: OutOfMemory Exception

2005-10-17 Thread t.n.a.
David Delbecq wrote: If the problem is related to hibernate libs, better check that with them. As I said, I make tapestry/cayenne-based apps, but I don't know if the problem might be related to database connection handling/pooling or something like that stopping the VM from freeing memory

Re: OutOfMemory Exception

2005-10-17 Thread David Delbecq
If the problem is related to hibernate libs, better check that with them. t.n.a. a écrit : > Enrique Rodriguez wrote: > >> This is what Peter said to me. I set permgen to 256 MB and i still not >> have any OutOfMemory exception. >> >> Regards, Enrique. >> >> > I've added > JAVA_OPTS="$JAVA_OPTS

Re: OutOfMemory Exception

2005-10-17 Thread t.n.a.
Enrique Rodriguez wrote: This is what Peter said to me. I set permgen to 256 MB and i still not have any OutOfMemory exception. Regards, Enrique. I've added JAVA_OPTS="$JAVA_OPTS -server -XX:MaxPermSize=256m" to my catalina.sh on the devel. server, hope I can get the root on the production

Re: OutOfMemory Exception

2005-10-17 Thread David Delbecq
Most probably you webapp is not freeing some ressources when unloaded. This is always a tricky problem to solve. The easiest way it to use some profiling tool, then touch you web.xml until you get a outofmemory. When this happens use to profiling tool to track where memory is lost. That is what has

Re: OutOfMemory Exception

2005-10-17 Thread Enrique Rodriguez
This is what Peter said to me. I set permgen to 256 MB and i still not have any OutOfMemory exception. Regards, Enrique. El mar, 11-10-2005 a las 17:11 +0100, Peter Crowther escribió: > > From: Enrique Rodriguez [mailto:[EMAIL PROTECTED] > > What i don't understand is that I "sometimes" get > Ou