Circus Process Watcher

_images/circus-medium.png

Circus is a process watcher and runner. It can be driven via a command-line interface or programmatically trough its python API.

It shares some of the goals of Supervisord, BluePill and Daemontools.

Circus is designed using Zero MQ. See Design for more details.

Note

Before running Circus, make sure you read the Security page.

To install it, check out Requirements

Using Circus via the command-line

Circus provides a command-line script that can be used to manage one or more watchers. Each watcher can have one or more running processes.

Circus’ command-line tool is configurable using an ini-style configuration file. Here is a minimal example:

[circus]
check_delay = 5
endpoint = tcp://127.0.0.1:5555

[watcher:myprogram]
cmd = python
args = -u myprogram.py $WID
warmup_delay = 0
numprocesses = 5

[watcher:anotherprogram]
cmd = another_program
numprocesses = 2

The file is then run using circusd:

$ circusd example.ini

Circus also provides two tools to manage your running daemon:

  • circusctl, a management console you can use it to perform actions such as adding or removing workers
  • circus-top, a top-like console you can use to display the memory and cpu usage of your running Circus.

To learn more about these, see Command-line tools

Monitoring and managing Circus through the web

Circus provides a small web application that can connect to a running Circus daemon and let you monitor and interact with it.

Running the web application is as simple as running:

$ circushttpd

By default, circushttpd runs on the 8080 port.

To learn more about this feature, see The Web Console

Using Circus as a Library

Circus provides high-level classes and functions that will let you manage processes. For example, if you want to run four workers forever, you can write:

from circus import get_arbiter

arbiter = get_arbiter("myprogram", 4)
try:
    arbiter.start()
finally:
    arbiter.stop()

This snippet will run four instances of myprogram and watch them for you, restarting them if they die unexpectedly.

To learn more about this, see Circus Library

Extending Circus

It’s easy to extend Circus to create a more complex system, by listening to all the circusd events via its pub/sub channel, and driving it via commands.

That’s how the flapping feature works for instance: it listens to all the processes dying, measures how often it happens, and stops the incriminated watchers after too many restarts attempts.

Circus comes with a plugin system to help you write such extensions, and a few built-in plugins you can reuse.

See The Plugin System.

Why should I use Circus instead of X ?

  1. Circus provides pub/sub and poll notifications via ZeroMQ

Circus has a pub/sub channel you can subscribe to. This channel receives all events happening in Circus. For example, you can be notified when a process is flapping, or build a client that triggers a warning when some processes are eating all the CPU or RAM.

These events are sent via a ZeroMQ channel, which makes it different from the stdin stream Supervisord uses:

  • Circus sends events in a fire-and-forget fashion, so there’s no need to manually loop through all listeners and maintain their states.
  • Subscribers can be located on a remote host.

Circus also provides ways to get status updates via one-time polls on a req/rep channel. This means you can get your information without having to subscribe to a stream. The Command-line tools command provided by Circus uses this channel.

See Examples.

  1. Circus is (Python) developer friendly

While Circus can be driven entirely by a config file and the circusctl / circusd commands, it is easy to reuse all or part of the system to build your own custom process watcher in Python.

Every layer of the system is isolated, so you can reuse independently:

  • the process wrapper (Process)
  • the processes manager (Watcher)
  • the global manager that runs several processes managers (Arbiter)
  • and so on…
  1. Circus scales
One of the use cases of Circus is to manage thousands of processes without adding overhead – we’re dedicated to focus on this.

Contributions and Feedback

More on contribution: Contributing to Circus.

Useful Links: