Hi, Here it says it is 24 hours, even for the standard environment. Am I interpreting this wrong?
from https://cloud.google.com/appengine/docs/standard/python/an-overview-of-app-engine *Deadlines / Manual Scaling:* Requests can run for up to 24 hours. A manually-scaled instance can choose to handle /_ah/start and execute a program or script for many hours without returning an HTTP response code. Task queue tasks can run up to 24 hours. I know this is not the best case even optimal case for AppEngine, but I am trying to find a way to utilize AppEngine for a small task, managing long running tcp connections. I know I can do this on a simple and small instance. Thanks On Tuesday, 13 February 2018 23:23:39 UTC+3, Katayoon (Cloud Platform Support) wrote: > > The response time limit > <https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-handled#response_limits> > > in App Engine is one hour, so it is intended that you receive the error > message after one hour. Using manual scaling in the Flexible environment > doesn’t affect that. > > Could you tell us why you need your requests to last for over an hour? It > might be that App Engine is not the best suited product for your needs. > > You should also note that very heavy traffic might result in your server > serving a 504 error. I recommend that you scale up the number of your > instances > <https://cloud.google.com/appengine/docs/flexible/python/configuring-your-app-with-app-yaml#services> > > based on your traffic estimation or set it as automatic scaling. > > > -- 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/41b44c9c-2835-464a-857a-a6dc3f63cfe8%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
