Sitemap

Easy Python Deployment with Fabric and Git

When I want to deploy code to http://mixpanel.com, I open a new terminal window and type fab deploy. Even though we have quite a few servers these days, our deploy process is really streamlined - we push code multiple times per day.

When you’re first starting a new web project, deployment is easy. All you have to do is log in to your server and do a git pull, and probably restart your web server. No problem.

If you grow beyond a single machine, though, this technique is rife with problems: the time it takes to deploy code grows linearly with the number of servers you have, it’s difficult to synchronize deployment, and it’s simply error-prone. Any point in your deployment process that requires you to log in to a server and type multiple commands is just asking for trouble.

We use a tool called Fabric to automate this process. Fabric makes it really easy to run commands across sets of machines. It’s similar to Capistrano (Ruby) but it’s written in Python so it was an easy choice for us

How Fabric Works

Fabric is a command-line tool that you can install with easy_install.

Once you get it installed, you can get started by creating a fabfile.py in the root of your application directory.

Here’s a bare-bones fabfile:

The really cool part is the way you can define roles, and only run an action on the servers tied to each role. Here we are defining a ‘web’ role with a single IP, and when we call fab get_version it will only run on that server. We're also defining a 'cache' role that is tied to two IP's, so a function acting on that role would run first on one IP and then on the other.

Any function you write in your fab script can be assigned to one or more roles. You can also include a single server in multiple roles — for example, we have an ‘all’ role that applies a function to every server.

Fabric functions

Fabric provides a set of commands in fabric.api that are simple but powerful:

local() — run a local command
run() — run a command on the remote server, user-level permissions
sudo() — sudo a command on the remote server
put() — upload a file to the remote server
get() — download a file from the remote server

You can combine these commands to to just about anything. We use fabric for a whole bunch of stuff, including:

  • Deploying live
  • Deploying stage
  • Deploying modified config files
  • Restarting servers
  • Updating iptables rules
  • Stopping and starting processing

Basically, any time we would need to log in to multiple servers to do something, we turn to Fabric. It’s simple and powerful.

Deploying with Fabric

We still use Git to deploy, but Fabric makes it easy to automate. Here’s a watered-down version of our deploy function:

This should be pretty readable, but basically we log in to every server with the ‘web’ role, pull from master, and restart fastcgi. It’s super fast and a lot less error prone than manually logging in and doing all of that.

Minor annoyances

As far as I can tell, Fabric can only execute commands sequentially rather than in parallel — but it looks like this is changing soon: http://code.fabfile.org/issues/show/19

Running simple commands on many servers is an embarassingly parallel problem so it’s good to see some progress is being made here.

It is also unfortunately difficult to aggregate functions that act on different roles. For example, using this fabfile:

fab all doesn't actually work. This is aggravating because it's a common task for us - we want to call a single deploy function and have it deploy certain things to the app server, others to the api server, etc.

These are definitely minor issues — Fabric is still incredibly valuable for us — I just thought it was important to point out that it’s not all rainbows and unicorns in Fabric-land.

If you’d like to learn more about Fabric, check out fabfile.org or the official IRC channel, #fabric on freenode.

Originally published at https://engineering.mixpanel.com on September 9, 2010.

No responses yet

Write a response