Hi , I am also facing the same issue in the App engine standard environment, could you please suggest us. find the below issue.
Error: Server ErrorThe server encountered an error and could not complete your request. Please try again in 30 seconds. Thanks, Narendra On Wednesday, May 10, 2017 at 11:28:03 PM UTC+5:30, Nick (Cloud Platform Support) wrote: > > Hey Alon, > > From what I can see online, it seems that error comes from collectd, a > logging service running on the instance. Can you try to run the docker > container for your app locally and see what happens? Here are the steps: > > 1. *Generate* the *Dockerfile* if you don't already have one: > > > > gcloud beta app gen-config > <https://cloud.google.com/sdk/gcloud/reference/beta/app/gen-config> > --custom > > > 2. *Build* a *docker image* from the Dockerfile: > > > docker build <https://docs.docker.com/engine/reference/commandline/build/> > -t myappcontainer . > > > 3. *Run* a *docker container* using the docker image > > > docker run <https://docs.docker.com/engine/reference/run/> -p > 127.0.0.1:8080:8080 myappcontainer > > > You can then observe the container starting up, or see if there's an error > when you send a request to 8080 (note that 8080 is the port most apps > listen on, but you might need to use another port if your app doesn't use > 8080). > > Let me know how it goes, > > Cheers, > > Nick > Cloud Platform Community Support > > > On Wednesday, May 10, 2017 at 1:06:51 PM UTC-4, Alon Schwartzman wrote: >> >> Hi Nick. >> >> I just deployed a node js app and I'm experiencing the same issue. >> >> Usingt the Stackdriver logs i can see the instance fails to start my app. >> >> read-function of plugin `tail-0' failed. Will suspend it for 480.000 >> seconds." >> >> Can you help? >> >> Thanks >> >> >> >> >> >> On Friday, March 3, 2017 at 5:40:17 PM UTC+2, Nick (Cloud Platform >> Support) wrote: >>> >>> Hey Nickolas, >>> >>> This forum should be used to post general discussion threads about the >>> platform, services, design patterns, etc., and a specific-issue question >>> like this should be posted to Stack Overflow, although maybe we could >>> gather more information before that, as in this state it seems there's not >>> quite enough information for anyone to begin working on it. I have some >>> lines of investigation which might lead to a better understanding: >>> >>> 1 .This could be a case of not inspecting the logs with the right logs >>> level - are you sure you're viewing "All logs", and not just "stdout, >>> stderr"? >>> >>> >>> <https://lh3.googleusercontent.com/-QzbBJlxqcmg/WLmNadNzaFI/AAAAAAAADMo/HE_w_IDDO6czwSeBhDzxj48VQ4cAPBc2wCLcB/s1600/Screenshot%2B2017-03-03%2Bat%2B10.35.59%2BAM.png> >>> >>> 2. You might also want to check whether you have any logs for the >>> resource "Cloud HTTP Load Balancer" as opposed to "GAE Application" >>> >>> 3. A final thing to check would be the headers attached to the response >>> - specifically looking to see what the "server" header says - to determine >>> whether this response is generated by our machines or your own. It seems to >>> look like an error that our infrastructure generates, not your app, but >>> it's good to check. >>> >>> Let me know what you find, and feel free to ask any further questions or >>> provide any information you think may be relevant. >>> >>> Cheers, >>> >>> Nick >>> Cloud Platform Community Support >>> >>> On Thursday, March 2, 2017 at 7:19:16 PM UTC-5, Nickolas Daskalou wrote: >>>> >>>> Hi, >>>> >>>> If we hit our Flexible environment service (Python 3 runtime) with a >>>> relatively low concurrency level using ApacheBench, we get this returned >>>> more often than not: >>>> >>>> Error: Server ErrorThe server encountered a temporary error and could >>>> not complete your request. >>>> >>>> Please try again in 30 seconds. >>>> >>>> I can't seem to find any information in any of logs about why this is >>>> occurring. >>>> >>>> Is there a way to get the cause of the above page being returned, >>>> whether it be via the logs or otherwise? >>>> >>>> Thanks, >>>> Nick >>>> >>> -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/d8339193-9d2b-4deb-b5c5-c25fe432a9e4%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
