I have a instance of django deployed in Heroku as follow, Procfile:
web: python manage.py collectstatic --noinput ; gunicorn MY_APP.wsgi --log-file -
worker: celery -A MY_APP worker
beat: celery -A MY_APP beat
This instance can receive 2000-4000 requests per minute, and sometimes it is too much.
I know I should change the communications... but can I change something in the configuration to get a 10-30% in the server efficiency?