Re: java.lang.OutOfMemoryError: PermGen space

2012-01-04 Thread Yohan Yudanara
amount of heap space with-Xmx600M. Of course, you may need to adjust the amount of memory in each category to match your actual application, but these are good starting values. On Thu, Jan 5, 2012 at 9:49 AM, Gubrud, Dave wrote: > Looks like you need to increase the size available for PermGen sp

RE: java.lang.OutOfMemoryError: PermGen space

2012-01-04 Thread Gubrud, Dave
Looks like you need to increase the size available for PermGen space in the jvm. Here's the setting we use when starting our server: -XX:MaxPermSize=128m Here's link for more info: http://community.eapps.com/showthread.php?153-Eliminate-PermGen-out-of-memory-errors-for-good! ---

java.lang.OutOfMemoryError: PermGen space

2012-01-04 Thread dick_hu
When I modify some page and open them in the browser, often there is a error occur. Can anyone tell me how can I avoid this error? Thanks a lot. Caused by: java.lang.OutOfMemoryError: PermGen space at java.lang.ClassLoader.defineClass1(Native Method) at

Re: permGen Space

2009-06-03 Thread Javier Molina
spaway escribió: many thanks, I am using netbeans IDE and have updated netbeans.conf file in my home user netbeans/6.1/etc folder as follows: -J-Xss2m -J-Xms32m -J-XX:PermSize=64m -J-XX:MaxPermSize=1024m That will only affect Netbeans itself, not the tomcat server your application runs on,

Re: permGen Space

2009-06-02 Thread spaway
inal Memory: 51M/104M shortly after that I'll get this weird behaviour. Is the Final Memory statistics that netbeans output as the last entries during a build / run process related to the MaxPermSize? Is there anything I am missing above? Cheers SPA 2009/6/3 Howard Lewis Ship > FYI P

Re: permGen Space

2009-06-02 Thread Howard Lewis Ship
FYI PermGen space is the space used to hold classes. IN an app server you often need more than the normal amount, since there is so much extra code. Tapestry itself adds many dependencies, plus extra class loaders, plus many runtime-generated classes. More PermGen space is a good idea. On Tue

Re: permGen Space

2009-06-02 Thread Estevam Henrique Portela Mota e Silva
-XX:PermSize=0m (default) -XX:MaxPermSize=64m (default) Example: JAVA_OPTS=-XX:PermSize=64m -XX:MaxPermSize=128m On Tue, Jun 2, 2009 at 11:05 AM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > Try raising the permgen space maximum allocated memory. > &

Re: permGen Space

2009-06-02 Thread Thiago H. de Paula Figueiredo
Try raising the permgen space maximum allocated memory. -- Thiago - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

permGen Space

2009-06-02 Thread spaway
I will appreciate if anybody could assist with how I can get to the root cause of a permGen Space error that comes at atimes for me. At this instance see the dump below: - java.lang.ClassLoader.defineClass1(Native Method) - java.lang.ClassLoader.defineClass(ClassLoader.java:620

Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-14 Thread Estevam Henrique Portela Mota e Silva
Sorry, forgot put link When you can test there link: http://www.lambdaprobe.org/d/index.htm -- Regards, Estevam Henrique Portela Mota e Silva Handicapped Auditory = deaf [EMAIL PROTECTED] / [EMAIL PROTECTED] Programmer Java and Tapestry Brazil - Fortaleza / CE

Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-13 Thread Estevam Henrique Portela Mota e Silva
today at work I was looking for a mistake adnd Isaw that the memory was being full. The tables were making the memory full. I believe that I am having problems with the aplication. How do I erase the memory and have it full? I believe that its a persistence on the memory. I used the probe to find o

Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-13 Thread Javier Sanchez
;>> > >>> Tomcat's war have 17 in my company > >>> Memory (Initial memory pool: 512mb and Maximum memory pool: 1024mb) > >>> Version: > >>> --> Tomcat 5.5.26 > >>> --> JDK 6_05 > >>> Server: > >

Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-13 Thread 9902468
;>> Server: >>> --> Gigabyte, Core 2 Duo and Memory 2 gb (motherboard has maximum >>> of >>> memory is 2 gb) >>> Added: >>> --> Isapi Redirector 1.2.14 on another server (IIS 5.0 and Win >>> 2000) >>> Note: >>

Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-13 Thread Kristian Marinkovic
an "Tapestry users" An "Tapestry users" Kopie Thema Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space Hi guys, I had some problems like this too, and i want to know from you, tapestry experts: Do you think that the wrong usage of @Persist annotation

Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-13 Thread Marcelo Lotif
abyte, Core 2 Duo and Memory 2 gb (motherboard has maximum of >> memory is 2 gb) >> Added: >> --> Isapi Redirector 1.2.14 on another server (IIS 5.0 and Win 2000) >> Note: >> --> All programs are installed executable (EXE) >> >> When I clicked g

Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-12 Thread 9902468
> When I clicked generate PDF (Jasper) in my project, was wrong ... See > below > pra > > [ERROR] RequestExceptionHandler Processing of request failed with uncaught > exception: PermGen space > java.lang.OutOfMemoryError: PermGen Space > > How resolved? > > -- >

Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-12 Thread Norbert Sándor
Try to set some more memory for permgen space, eg. /-XX:MaxPermSize=128m/ in case of Sun's JVM. The correct value depends on the environment, you can use for example JConsole to diagnose the JVM. Regards: Norbi Estevam Henrique Portela Mota e Silva írta: Good Afternoon, Who know

Re: Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-12 Thread Filip S. Adamsen
--> All programs are installed executable (EXE) When I clicked generate PDF (Jasper) in my project, was wrong ... See below pra [ERROR] RequestExceptionHandler Processing of request failed with uncaught exception: PermGen space java.lang.OutOfMemoryError: Pe

Tomcat 5.5.26 + JDK 6_05 - java.lang.OutOfMemoryError: PermGen Space

2008-06-12 Thread Estevam Henrique Portela Mota e Silva
ng of request failed with uncaught exception: PermGen space java.lang.OutOfMemoryError: PermGen Space How resolved? -- Regards, Estevam Henrique Portela Mota e Silva Handicapped Auditory = deaf [EMAIL PROTECTED] / [EMAIL PROTECTED] Programmer Java and Tapestry Brazil - Fortaleza / CE

Re: PermGen space - Caching is ON

2006-07-26 Thread Ryan Cuprak
ch larger the PermSize can be. >> >> Thanks for your help. >> >> >> -Original Message- >> From: Martin Strand [mailto:[EMAIL PROTECTED] >> Sent: Monday, July 24, 2006 10:31 AM >> To: Tapestry users >> Subject: Re: PermGen space - Cach

Re: PermGen space - Caching is ON

2006-07-24 Thread Martin Strand
What I meant is that the redeploy ant task you mentioned likely causes the same error as Eclipse's hot redeploy - old unused classes are still left in permgen space. Restarting tomcat rather than redeploying would probably cure the problem. Also, if you check google: http://www.googl

RE: PermGen space - Caching is ON

2006-07-24 Thread David . Harvey
e PermSize can be. Thanks for your help. -Original Message- From: Martin Strand [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 10:31 AM To: Tapestry users Subject: Re: PermGen space - Caching is ON Hot redeploy is when you edit your code in Eclipse and Eclipse automatically

RE: PermGen space - Caching is ON

2006-07-24 Thread David . Harvey
PermSize can be. Thanks for your help. -Original Message- From: Konstantin Ignatyev [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 9:52 AM To: Tapestry users Subject: Re: PermGen space - Caching is ON Just an idea: could it be that some aspectizing container (Spring or Hiv

Re: PermGen space - Caching is ON

2006-07-24 Thread Martin Strand
any ideas? > > -Original Message- > From: James Carman [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 23, 2006 6:03 AM > To: Tapestry users > Subject: Re: PermGen space > > Actually, Tapestry (and HiveMind as well) uses Javassist to generate > classes at runtime,

Re: PermGen space - Caching is ON

2006-07-24 Thread Konstantin Ignatyev
then creating objects from it. That would clog PermGen space. Do you run anything non-standard or suspicious? --- Henri Dupre <[EMAIL PROTECTED]> wrote: > Yes I've seen the same issue on linux and windows > with all JDKs using Tomcat > or JBoss. > I'd be curious to know

Re: PermGen space - Caching is ON

2006-07-24 Thread Henri Dupre
ssion that making it > larger will just delay the OOM condition anyway. > > Anybody else have any ideas? > > -Original Message- > From: James Carman [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 23, 2006 6:03 AM > To: Tapestry users > Subject: Re: PermGen space >

Re: PermGen space - Caching is ON

2006-07-24 Thread Martin Strand
nal Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Sunday, July 23, 2006 6:03 AM To: Tapestry users Subject: Re: PermGen space Actually, Tapestry (and HiveMind as well) uses Javassist to generate classes at runtime, but all the rest is still true with Javassist as it is with CGLIB

Re: PermGen space - Caching is ON

2006-07-24 Thread Henri Dupre
On 7/24/06, Ben Sommerville <[EMAIL PROTECTED]> wrote: A final option may be to use a different JDK impl. E.g. I'm pretty sure that Jrockit (from bea) doesn't have a perm gen space & hence wont get the same problem (or at least might manifest it in a different way that is easier to diagnose).

RE: PermGen space - Caching is ON

2006-07-24 Thread Harvey, David
Roughly 100 unique pages. Several pages have multiple Ajax round trips for autocomplete using the Tacos toolkit. -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 5:03 AM To: Tapestry users Subject: RE: PermGen space - Caching is ON How

RE: PermGen space - Caching is ON

2006-07-24 Thread James Carman
gt; larger in production and it sounds from your discussion that making it > larger will just delay the OOM condition anyway. > > Anybody else have any ideas? > > -Original Message- > From: James Carman [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 23, 2006 6:03 AM

RE: PermGen space - Caching is ON

2006-07-24 Thread Danny Angus
"Harvey, David " <[EMAIL PROTECTED]> wrote on 24/07/2006 02:50:17: > Thanks for your comments, discussion. However, this occurs when > caching is turned on, i.e. > -Dorg.apache.tapestry.disable-caching=false. > > I sure hope there's a fix, I don't know if MaxPermSize can be made > any larger in

RE: PermGen space - Caching is ON

2006-07-24 Thread Ben Sommerville
that helps. For what its worth, you have my sympathies. I've tried to find similar problems myself & it’s a long, hard road :( Regards, Ben Sommerville -Original Message- From: Henri Dupre [mailto:[EMAIL PROTECTED] Sent: Monday, 24 July 2006 2:12 PM To: Tapestry users Subject: Re: Perm

Re: PermGen space - Caching is ON

2006-07-23 Thread Henri Dupre
xPermSize can be made any > larger in production and it sounds from your discussion that making it > larger will just delay the OOM condition anyway. > > Anybody else have any ideas? > > -Original Message- > From: James Carman [mailto:[EMAIL PROTECTED] > Sent:

Re: PermGen space - Caching is ON

2006-07-23 Thread Jesse Kuhnert
anyway. Anybody else have any ideas? -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Sunday, July 23, 2006 6:03 AM To: Tapestry users Subject: Re: PermGen space Actually, Tapestry (and HiveMind as well) uses Javassist to generate classes at runtime, but all the re

RE: PermGen space - Caching is ON

2006-07-23 Thread Harvey, David
arger will just delay the OOM condition anyway. Anybody else have any ideas? -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Sunday, July 23, 2006 6:03 AM To: Tapestry users Subject: Re: PermGen space Actually, Tapestry (and HiveMind as well) uses Javassist t

Re: PermGen space

2006-07-23 Thread James Carman
runtime is initialized with >> -XX:PermSize=96M -XX:MaxPermSize=128M >> >> The stack trace we get at various times is: >> >> 2006-07-20 17:25:11,415 ERROR >> [net.sf.tacos.ajax.impl.AjaxDirectServiceImpl] Error invok

Re: PermGen space

2006-07-22 Thread Jean-Eric Cuendet
e we get at various times is: 2006-07-20 17:25:11,415 ERROR [net.sf.tacos.ajax.impl.AjaxDirectServiceImpl] Error invoking listener on component $AjaxForm_40 org.apache.hivemind.ApplicationRuntimeException: PermGen space [context:/WEB-INF/pages/claims/addEdit.page, line

Re: PermGen space

2006-07-21 Thread Martin Strand
these classes are never removed from the "permgen" heap space by the jvm and eventually there won't be room for more classes. If you enable caching, everything should be fine. You can raise the permgen space limit by passing in -XX:PermSize=128m but that will only delay the crash.

PermGen space

2006-07-21 Thread Harvey, David
oking listener on component $AjaxForm_40 org.apache.hivemind.ApplicationRuntimeException: PermGen space [context:/WEB-INF/pages/claims/addEdit.page, line 6, column 93] at org.apache.tapestry.engine.RequestCycle.rewindForm(RequestCycle.java:461 )