diff --git a/gunicorn.py b/gunicorn.py index 418d85a721..85b28f916c 100644 --- a/gunicorn.py +++ b/gunicorn.py @@ -10,6 +10,6 @@ preload_app = bool(os.environ.get("GUNICORN_PRELOAD_APP", True)) timeout = 60 # Limit the impact of caching on RAM use by restarting workers -# every 50 requests -max_requests = 50 -max_requests_jitter = 5 +# every 500 requests +max_requests = 500 +max_requests_jitter = 50