Hi, Despite having manually scaled in the flexible environment, I am getting 504 timeout (seems from nginx). Has anybody experienced sth like this? I couldn't find what I'm doing wrong for my test.
I am sure the app is not failing. Also, I see that my application continues to run even though the request is dropped by nginx. Here is the response to appengine request (after 60mins) : <html> <head><title>504 Gateway Time-out</title></head> <body bgcolor="white"> <center><h1>504 Gateway Time-out</h1></center> <hr><center>nginx</center> </body> </html> Here is the app.yaml descriptor: service: some-service-name api_version: 1 threadsafe: yes runtime: python env: flex entrypoint: gunicorn --pythonpath src -t 22400 -b :$PORT -w 1 --threads 12 src.main:app runtime_config: python_version: 3 skip_files: - ^(.*/)?\.pyc$ - lib - venv readiness_check: path: "/" check_interval_sec: 30 timeout_sec: 10 failure_threshold: 3 success_threshold: 3 app_start_timeout_sec: 300 liveness_check: path: "/" check_interval_sec: 30 timeout_sec: 10 failure_threshold: 3 success_threshold: 3 handlers: - url: .* script: src.main.app manual_scaling: instances: 1 resources: cpu: 1 memory_gb: 0.5 disk_size_gb: 10 env_variables: DEBUG: 0 -- 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/e9ff3eb3-5778-4dd1-acc8-18e6989cd9c9%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
