Skip to content

bninja/rump

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
bninja
Oct 9, 2014
3b6c4ff · Oct 9, 2014

History

13 Commits
Oct 7, 2014
Oct 9, 2014
Oct 9, 2014
Oct 7, 2014
Oct 7, 2014
Oct 7, 2014
Oct 7, 2014
Oct 9, 2014
Oct 9, 2014

Repository files navigation

rump

https://travis-ci.org/bninja/rump.png https://coveralls.io/repos/bninja/rump/badge.png

R(outing)Ump(ire) is an experimenal upstream (i.e. server) selector for HTTP requests. It does not proxy the request but instead integrates with a load-balancer or reverse-proxy that exposes an upstream selection interface:

dev

$ git clone [email protected]:bninja/rump.git
$ cd rump
$ mkvirtualenv rump
(rump)$ pip install -e .[tests]
(rump)$ py.test test/ --cov=rump --cov-report term-missing

wtf?

Typically you can embed complex routing logic directly in a load-balancer or reverse-proxy (e.g. nginx lua, varnish vcl, etc) and that's what should be done 99% of the time.

This is an experiment to see what writing a Python based HTTP upstream selector would look like and what flexibility that gives you.

Use it as a program or embed it as a lib in your proxy.

program

Install it:

Use it:

$ rump list
my-router
$ rump show -d my-router
...
$ rump edit -d my-router
$ service rumpd status

lib

Get it:

$ pip install rump

Use it:

import rump

router = rump.Router(
    name='my-router',
    ...
)

upstream = router.match_upstream(router.request_type(wsgi_environ))
if upstream:
   server = upstream()

About

routing umpire

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages