I have a flask web-app that uses a gunicorn server and I have used the gevent worker class as that previously helped me not get [CRITICAL] WORKER TIMEOUT
issues before but since I have deployed it on to AWS behind an ELB, I seem to be getting this issue again.
I have tried eventlet
worker class before and that didn't work but gevent
did locally
This is the shell script that I have used as an entrypoint for my Dockerfile:
gunicorn -b 0.0.0.0:5000 --worker-class=gevent --worker-connections 1000 --timeout 60 --keep-alive 20 dataclone_controller:app
When i check the logs on the pods, this is the only information that gets printed out:
[2019-09-04 11:36:12 +0000] [8] [INFO] Starting gunicorn 19.9.0
[2019-09-04 11:36:12 +0000] [8] [INFO] Listening at:
http://0.0.0.0:5000 (8)
[2019-09-04 11:36:12 +0000] [8] [INFO] Using worker: gevent
[2019-09-04 11:36:12 +0000] [11] [INFO] Booting worker with pid: 11
[2019-09-04 11:38:15 +0000] [8] [CRITICAL] WORKER TIMEOUT (pid:11)
from CRITICAL WORKER TIMEOUT on gunicorn when deployed to AWS
No comments:
Post a Comment