fix: suggest Gunicorn instead of uvicorn when using max_requests_before_restart (#17788)

This commit is contained in:
Alexsander Hamir 2025-12-10 13:09:00 -08:00 committed by GitHub
parent 7ad2a58dcd
commit 439bb5bfe3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -81,6 +81,13 @@ CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--num_workers"
export MAX_REQUESTS_BEFORE_RESTART=10000
```
> **Tip:** When using `--max_requests_before_restart`, the `--run_gunicorn` flag is more stable and mature as it uses Gunicorn's battle-tested worker recycling mechanism instead of Uvicorn's implementation.
```shell
# Use Gunicorn for more stable worker recycling
CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--num_workers", "$(nproc)", "--run_gunicorn", "--max_requests_before_restart", "10000"]
```
## 4. Use Redis 'port','host', 'password'. NOT 'redis_url'