"Sam" <samit.katiyar@gmail.com> said:
>I am deploying my application on bea weblogic 8.1SP5........and it
>showing errors below::::
...
>JVMDG274: Dump Handler has Processed OutOfMemory.
>
>Is dere any solution for it?
Well, you have three choices:
- you've not allocated enough memory to your server
(JVM startup parameters)
- your code is leaking memory (or, WebLogic server is leaking
memory, but your code is more probable of the two)
- your code (or, again, WebLogic server code) is causing
memory fragmentation; that is, there is free JVM heap
available, but not in large enough contiguous chunks
The first two: look at the memory utilization of your system
(WebLogic console provides graphing tools for this); if it's
steady, linear growth of used memory, and you get OutOfMemory
when the curve hits the top, then there either is not enough
memory or the application is leaking memory. Make an educated
guess whether your application should consume the amount of
memory you've allocated for it, and if it could, increase the
memory allocation. Do this until your memory allocation is
so large that you're certain that you've exceeded the run size
of your application. If you still encounter the OutOfMemory
errors, your code is leaking memory (i.e. not properly releasing
references to created objects), and should be fixed.
The third: looking at the memory usage graph, you get OutOfMemory
error when there seemingly is still memory available. Allocating
more memory may help, also changing VM memory-related parameters
may help.

Signature
Wolf a.k.a. Juha Laiho Espoo, Finland
(GC 3.0) GIT d- s+: a C++ ULSH++++$ P++@ L+++ E- W+$@ N++ !K w !O !M V
PS(+) PE Y+ PGP(+) t- 5 !X R !tv b+ !DI D G e+ h---- r+++ y++++
"...cancel my subscription to the resurrection!" (Jim Morrison)
Sam - 19 Jun 2006 07:49 GMT
Thanks for ur valuable response........
But unfortunately I m not able to solve my problem...
I tried to view memory lekedge through JRockit but i couldm't configure
my console.......
Can u plz tell me the exact way to solve this problem?
I'll be thankful to u.
Thanks
> "Sam" <samit.katiyar@gmail.com> said:
> >I am deploying my application on bea weblogic 8.1SP5........and it
[quoted text clipped - 35 lines]
> PS(+) PE Y+ PGP(+) t- 5 !X R !tv b+ !DI D G e+ h---- r+++ y++++
> "...cancel my subscription to the resurrection!" (Jim Morrison)