mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
Default worker-count in Docker: min(cpu_count, 4) instead of 1
As per discussion with @sekrause on #101 Briefly: recent reduction is a good idea, but 1 is probably too little.
This commit is contained in:
@@ -5,10 +5,10 @@
|
||||
### Backwards-incompatible changes
|
||||
|
||||
* The default number of web processes (gunicorn server workers) in the
|
||||
dockerized setup is now 1 (it used to be 10).
|
||||
dockerized setup is now equal to `min(cpu_count, 4)`; (it used to be 10).
|
||||
|
||||
set `WEB_CONCURRENCY=...` or `GUNICORN_CMD_ARGS="--workers=..."` to
|
||||
restore the previous behavior or choose a custom number.
|
||||
set `GUNICORN_CMD_ARGS="--workers=..."` to restore the previous behavior or
|
||||
choose a custom number.
|
||||
|
||||
### ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user