[google-appengine] Re: AppEngine crashing my webserice randomly with errors

2022-04-21 Thread 'Darrell (Cloud Platform Support)' via Google App Engine
Hi, Are there any other relevant error logs? I am asking because there are a couple of reasons for the shutdown process to occur[1]. I suggest verifying if your instance is exceeding the maximum memory and checking if there are any CPU spikes prior to the crashing. I hope this helps! [1]

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-04-21 Thread 'Horace (Cloud Platform Support)' via Google App Engine
Hello Since we don't have visibility on your project to check your App Engine settings including your yaml file and further use our internal tools to find out what is happening, kindly take a look at your configuration such as your max instances, idle time out, and scaling. From your log,

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-21 Thread 'Rogelio Monter Rodriguez' via Google App Engine
This gist on GitHub provides a summary on how to run Eclipse on WSL2. For Netbeans, as shown on this StackOverflow answer , there’s only a workaround. Also, this tutorial

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-21 Thread Ludovic Champenois
Hi, You can install InteliJ on wsl2 according to https://nirisarri.github.io/2020-11-03-how-to-install-and-run-intellij-idea-for-linux-in-wsl2/ similar steps should work for NetBeans or Eclipse I guess. Ludp On 4/21/22 2:55 AM, 'Rajesh G' via Google App Engine wrote: If you dont' use IDE 

[google-appengine] AppEngine crashing my webserice randomly with errors

2022-04-21 Thread Robert Bartram
Were getting random AppEngine instance crashing ever so many days. It seems this year to happen allot more then usual. We get these shutdown errors when it happens in the log console. Any ideas on why this happens? Is this Google updating the Linux kernel os behind the scenes? Any way to

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-04-21 Thread 'Nikhil Patil' via Google App Engine
I think no issue on application side. I have logged upto last line of my post method and after that is return response. *Code:* class myView(generics.ListCreateAPIView): permission_classes = (IsAuthenticated,) http_method_names = ['get', 'post'] search_fields = ['some', 'thing', 'here'']

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-21 Thread 'Rajesh G' via Google App Engine
If you dont' use IDE like eclipse or netbeans (it is not available on windows 11 wsl2 env) Use mvn compile. It is working for me now on windows 11. I will try on wsl2 later. On Sat, Apr 16, 2022 at 10:20 PM Ludovic Champenois < ludovic.champen...@gmail.com> wrote: > Hi, > Almost there, I

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-21 Thread 'Rajesh G' via Google App Engine
mvn war:exploded did not work. However, mvn compile is working now and the server will restart. It did not when I tried earlier. Cheers On Thu, Apr 21, 2022 at 12:56 AM 'Rogelio Monter Rodriguez' via Google App Engine wrote: > As stated in the app-maven-plugin User guide >