> 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
-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
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
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
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
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
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
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