Skip to main content

A wrapper around gunicorn to handle graceful restarts correctly

Project description

Rainbow Saddle

https://travis-ci.org/flupke/rainbow-saddle.svg

rainbow-saddle is a wrapper around Gunicorn to simplify code reloading without dropping requests.

Installation

Install from pypi:

$ sudo pip install rainbow-saddle

Or from source:

$ sudo ./setup.py install

Why?

Sometimes doing a kill -HUP <gunicorn PID> is not sufficient to reload your code. For example it doesn’t work well if you host your code behind a symlink, or if a .pth in your installation is updated to point to a different directory.

The correct way to reload code in such situations is a bit complicated:

# Reexec a new master with new workers
/bin/kill -s USR2 `cat "$PID"`
# Graceful stop old workers
/bin/kill -s WINCH `cat "$PIDOLD"`
# Graceful stop old master
/bin/kill -s QUIT `cat "$PIDOLD"`

It also has the downside of changing the “master” process PID, which confuses tools such as supervisord.

rainbow-saddle handles all of this for you, and never changes its PID. Reloading code becomes as simple as sending a SIGHUP again:

$ rainbow-saddle --pid /tmp/mysite.pid gunicorn_paster development.ini --log-level debug
$ kill -HUP `cat /tmp/mysite.pid`

News

0.4.0

Support new binary upgrade method used by Gunicorn, since version 19.6.0. Drops support for all previous versions of Gunicorn. See commit benoitc/gunicorn@418f140 for more info, thanks to Jacob Magnusson.

0.3.1

Minor Python3 compatibility fix, thanks to Justin Locsei.

0.3.0

Thanks to Rafael Floriano da Silva for the following:

  • add –gunicorn-pidfile

  • fix race condition for slow starting apps

  • update psutil

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rainbow-saddle-0.4.0.tar.gz (5.2 kB view details)

Uploaded Source

File details

Details for the file rainbow-saddle-0.4.0.tar.gz.

File metadata

File hashes

Hashes for rainbow-saddle-0.4.0.tar.gz
Algorithm Hash digest
SHA256 97a481c16151c5bf9d08530117c5b2a345f0935f669862d268f5ffabfe060566
MD5 1368ec53b7421f7a42096d063598442b
BLAKE2b-256 59a025744c1b1fe7631b43bd69a9bbf4f195ba08bb3cedb3ab41cbd3ad1a0b17

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page