13

I'm getting inconsistent code-reloading behavior, with a Django 1.3 application and gunicorn 0.12.1, running inside a virtualenv.

Gunicorn does not reload my application properly, even with a restart of the specific gunicorn process PID. When I run a basic runserver (through Django, via the manage.py command) this is not an issue.

When I remove and recreate my virtualenv, gunicorn runs as expected with the new code.

Is there a Python cache or something? I also tried to remove all *.pyc files.

fish2000
  • 4,289
  • 2
  • 37
  • 76
k3k
  • 139
  • 1
  • 3

2 Answers2

7

Try this:

$ kill -HUP masterpid

Also, have a look at some of the notes at the bottom of the following post.

Honza Pokorny
  • 3,205
  • 5
  • 37
  • 43
4

I ran into variations of this problem as well -- as advised in the article linked to by Mr. Pokomy, killing the gunicorn master process with a HUP signal seems to do the trick.

One can set up auto-reloading on file save easily, if you use the python watchdog module; the setup is actually pretty self-explanatory, so here's a snippet from my development supervisord.conf file:

[program:ost2]
autostart=true
command=/usr/local/share/python/gunicorn --debug\
-c /Users/fish/Dropbox/ost2/ost2/utils/gunicorn/ost2-debug.py wsgi_debug
directory=/Users/fish/Dropbox/ost2/ost2
priority=500
; (etc)

[program:ost2-reloader]
autostart=true
autorestart=false
directory=/tmp
command=/usr/local/share/python/watchmedo shell-command\ 
--patterns="*.py;*.txt;*.html;*.css;*.less;*.js;*.coffee"\
-R --command='kill -HUP $(cat /usr/local/gunicorn/gunicorn.pid)'\
/Users/fish/Dropbox/ost2/ost2/
priority=996
; (etc)

(N.B. I put the slashes in that sample before newlines that aren't actually in the conf file -- I inserted those newlines for legibility; I am not sure if that works IRL)

The first program is the gunicorn process, which I run in a single thread during development in order to use the Werkzeug debugger. The second part is the interesting bit: that command says, "kill the process specified by the gunicorn PID file whenever there's a change in a file in this directory tree if the file's suffix matches one from this list".

Works like a charm for many including me. If you don't know it, watchdog is very useful and is worth a look, in its own right.

fish2000
  • 4,289
  • 2
  • 37
  • 76
  • 1
    This is great, and if you are using supervisor to manage gunicorn, you can replace your cat command with: supervisorctl status gunicorn_task_name | sed -e 's/.*pid \([0-9]\{1,5\}\).*/\1/g' – Matt Koskela Apr 12 '13 at 21:43