Solution
gunicorn -w 4 --threads 100 -b 0.0.0.0:5000 your_project:app
pip install gevent
gunicorn -w 4 -k gevent --worker-connections 1000 -b 0.0.0.0:5000 your_project:app
gunicorn -w 4 --threads 100 -b 0.0.0.0:5000 your_project:app
pip install gevent
gunicorn -w 4 -k gevent --worker-connections 1000 -b 0.0.0.0:5000 your_project:app