From 3b79f161f7792fdb603cba90d371c918f318aafc Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Fri, 27 Jun 2014 10:26:01 +0200 Subject: [PATCH] Update faq.rst tell there is a wip about the thundering herd problem. Also put a not on how watch logs in the console since many people asked for it. --- docs/source/faq.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/source/faq.rst b/docs/source/faq.rst index 240ff5e1..f698a48e 100644 --- a/docs/source/faq.rst +++ b/docs/source/faq.rst @@ -90,11 +90,18 @@ may be either threads or processes, wake up at the same time to handle an new request. Since only one handler will receive the request, the others will have been awakened for no reaon, wasting CPU cycles. At this time, Gunicorn does not implement any IPC solution for coordinating between worker processes. You may -experience high load due to this problem when using many workers or threads. +experience high load due to this problem when using many workers or threads. +However `a work has been started `_ to remove this issue. .. _worker_class: configure.html#worker-class .. _`number of workers`: design.html#how-many-workers +Why I don't see any logs in the console? +---------------------------------------- + +Since the version R19, Gunicorn doesn't log by default in the console. +To watch the logs in the console you now need to use the option ``--log-file=-`. + Kernel Parameters =================