From a023a58c9ee59ac8f5383fdc2b270ad1002cbff1 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Sun, 28 Apr 2013 18:25:50 -0400 Subject: [PATCH] According to popular-belief, we should be running '1 + 2 * number of cores' for guni procs. Setting them to 17 since we're on an 8-core system. --- gunicorn.conf.server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn.conf.server.py b/gunicorn.conf.server.py index df10f61..d9f8bf1 100644 --- a/gunicorn.conf.server.py +++ b/gunicorn.conf.server.py @@ -4,7 +4,7 @@ debug = False # Some extra logging logfile = ".gunicorn.log" # Name of the log file loglevel = "info" # The level at which to log pidfile = ".gunicorn.pid" # Path to a PID file -workers = 3 # Number of workers to initialize +workers = 17 # Number of workers to initialize umask = 0 # Umask to set when daemonizing user = None # Change process owner to user group = None # Change process group to group