epio / mantrid

An HTTP load balancer that is configurable at runtime

Home Page:http://mantrid.readthedocs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mantrid

Mantrid is the HTTP load balancer used for Epio. It is designed with high availability and simplicity in mind: it is configured at runtime with JSON over HTTP and can temporarily hold open connections while backend servers restart. It monitors bandwidth and connection statistics and is ideal for serving large numbers of hostnames.

It trades some raw speed for flexibility, but is still designed to be fast. Its aim is to have latency of no more than 10ms, and have no more than a 10% reduction in throughput.

Compatibility

Mantrid is designed to work with Python 2.6 or 2.7, and requires a Python implementation that supports greenlets (so either CPython or PyPy 1.7 and up).

Quick start

Install Mantrid:

$ sudo python setup.py install

Launch Mantrid with the default settings (listening on port 80, management on 8042):

$ sudo mantrid

Add a host:

$ mantrid-client set localhost static false type=test

Then visit http://localhost/ to see the test page.

Configuration

Mantrid is partially configured using a small configuration file (/etc/mantrid/mantrid.conf) which sets up basic things like ports to listen on. The hostnames and load balancing rules are configured at runtime using a REST API, and persisted to a state file on disk so they survive restarts.

A command-line interface, mantrid-client, ships with Mantrid to make simple interactions with the API easier.

Contributing

Mantrid is released under a BSD (3-clause) license. Contributions are very welcome - come and chat with us in #epio on freenode! If you discover a security issue, please email security@ep.io.

About

An HTTP load balancer that is configurable at runtime

http://mantrid.readthedocs.org

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%