Skip to main content

helpers for writing manageable Serf handlers

Project description

# Serf Master

[![Build
Status](https://secure.travis-ci.org/garethr/serf-master.png)](http://travis-ci.org/garethr/serf-master)
[![Coverage
Status](https://coveralls.io/repos/garethr/serf-master/badge.png?branch=master)](https://coveralls.io/r/garethr/serf-master?branch=master)
[![Code
Health](https://landscape.io/github/garethr/serf-master/master/landscape.png)](https://landscape.io/github/garethr/serf-master/master)

[Serf](http://www.serfdom.io/) is a very nice service discovery and
orchestration framework which allows you to write scripts to react to
different events across your infrastructure. However most of the
examples are simple shell scripts with lots of logic embedded in them.
Combine that with per host configuration around registering event
handlers and it's easy to build a fiddly, hard to reason about
enviroment. It doesn't have to be that way.

Serf is the framework, what you built on top of it matters. I wanted
something with the following properties:

* Testable. I should be able to unit test the entire configuration.
* Single package. All hosts should get the same code, with the code
deciding what runs where.
* Single event handler. I'd rather deal with logic about user events or
roles within my code, rather than parameters to serf.
* Make handlers sharable. You can simply extend `SerfHandler` and
package up your own handlers, say `serf_master_haproxy`.

Serf Master tries to do this, presented as a very small Python framework
with no dependencies. Here's an example:

## An example

Imagine a cluster with a number of database servers and web servers. The
database servers have the Serf role of `db` and the web servers the Serf
role of `web`. We want the web servers to react whenever a new server is
added to the cluster (maybe to tell a load balancer to reload?) and we
want to be able to trigger a deploy. For the database servers we want to
be able to trigger a backup custom event.

```python
#!/usr/bin/env python
from serf_master import SerfHandler, SerfHandlerProxy

class WebHandler(SerfHandler):
def deploy(self):
# run commands here to do with deployment

def member_join(self):
# maybe rebalance the load balancer


class DatabaseHandler(SerfHandler):
def backup(self):
# run commands here to do with backups


if __name__ == '__main__':
handler = SerfHandlerProxy()
handler.register('web', WebHandler())
handler.register('db', DatabaseHandler())
handler.run()
```

The important parts are:

```python
handler.register('web', WebHandler())
```

This says if the Serf role is `web` then use the `WebHandler` class for
any events.

```python
def member_join(self):
```

This says for the `member-join` serf event we should execute the code
we write here.

See the unit tests for examples of now this can be tested.

## Configuration

Using this with Serf is simple, just wire up all the event handlers to
your script like so:

```bash
serf agent -event-handler /opt/your/script.py
```

Although you could restrict the events which are managed by this handler
the whole point of serf-master is to move the handler definition into
code and away from command line flags.

## Installation

Serf Master is available on
[PyPi](https://pypi.python.org/pypi/serf_master) and can be installed
with:

pip install serf_master

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

serf_master-0.4.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

serf_master-0.4-py2.7.egg (2.8 kB view details)

Uploaded Source

File details

Details for the file serf_master-0.4.tar.gz.

File metadata

  • Download URL: serf_master-0.4.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for serf_master-0.4.tar.gz
Algorithm Hash digest
SHA256 dd796760642dc7a6aa8e2878dad92c68a28ec8c7fe6467e0cadd00528171bc57
MD5 e5fb1187b11a6cd7e301b5e2a38145cb
BLAKE2b-256 26dd28079c454406f27ef761ca9d14be407fe9e3195d248980439181c6b33390

See more details on using hashes here.

File details

Details for the file serf_master-0.4-py2.7.egg.

File metadata

File hashes

Hashes for serf_master-0.4-py2.7.egg
Algorithm Hash digest
SHA256 4fc893a26a3b18722436bcfd4386cac867e8ea01cff03269bb1a6bf636df233f
MD5 5270e32e1641f76fd9406c56bd855659
BLAKE2b-256 dbefb3bc14768c04244aeeed89edba55f156107cd56610cf21a29cf2c6f924b5

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