Re: [google-appengine] Re: Exceeded soft memory limit

2010-10-05 Thread Robert Kluin
Are you using global variables to cache stuff at the module level or something similar? Robert On Tue, Oct 5, 2010 at 13:25, sahid wrote: > up > > On Oct 3, 10:06 pm, sahid wrote: >> Hello, >> >> I have a little problem with my application, >> i have a lot of "Exceeded soft memory limit"

Re: [google-appengine] Re: Exceeded soft memory limit

2010-10-06 Thread Robert Kluin
The message just means your app has used "too much" memory. I just re-read your first email, you indicate that you need about 500MB of memory... so I guess you are aware of what you are doing that uses the memory. You probably have three choices: 1) Try submitting a production issue request to Go

Re: [google-appengine] Re: Exceeded soft memory limit - how to configure app.yaml for java 11

2021-03-27 Thread Raphael André Bauer
Thanks Ludo! I have zero idea how this is implemented internally - but might it be the case that the VPN connector uses a substantial amount of memory of the instance? On Thu, Mar 25, 2021 at 10:20 PM Ludovic Champenois wrote: > > > Hi, > I am not sure JAVA_TOOL_OPTIONS is supported (nor documen

Re: [google-appengine] Re: Exceeded soft memory limit - how to configure app.yaml for java 11

2021-04-07 Thread 'Andrew Cooper' via Google App Engine
Do you know how much memory it uses when you run it locally? Increasing the size of the instance is not generally the best approach. For example, if you have a memory leak, then the instance size might need to grow exponentially!! You can use Cloud Code to hel