Skip to main content

A simple, fast, pure-python load balancer

Project description

PumpkinLB is a fast multi-process load balancer, compatible with Linux, Cygwin, and Windows environments. It listens for requests on local ports, and farms them out to any number of workers. You can use it to very quickly setup a load balancer, e.x. from 1 front point to 5 different apache servers.

Each incoming port is waited-on by a distinct process, and each connection is yet another process, thus it performs very well even under heavy load.
Usage

Execute by running PumpkinLB.py [cfgFile]

Where cfgFile is the path to your config file. There is a sample "example.cfg" included.

Config file is broken up into sections, definable by [$SectionName], followed by variables in format of key=value.

Sections:

[options]
pre_resolve_workers=0/1 [Default 1] Any workers defined with a hostname will be evaluated at the time the config is read.
This is preferable as it saves a DNS trip for every request, and should be enabled
unless your DNS is likely to change and you want the workers to match the change.

[mapping]
localaddr:inport=worker1:port,worker2:port... Listen on interface defined by "localaddr" on port "inport". Farm out to worker addresses and ports. Ex: 192.168.1.100:80=10.10.0.1:5900,10.10.0.2:5900
or
inport=worker1:port,worker2:port... Listen on all interfaces on port "inport", and farm out to worker addresses with given ports. Ex: 80=10.10.0.1:5900,10.10.0.2:5900

So an example to listen on port 80 localhost and farm out to 3 apache servers on your local subnet:

80=192.168.1.100:80,192.168.1.101:80,192.168.1.102:80

Sending SIGTERM, SIGINT, or pressing control+c will do a graceful shutdown (it will wait for up to 4 seconds to finish any active requests, and then terminate).

Requests are generally handled round-robin between the various workers. If a request fails on a backend worker, it will be retried on another random worker until it succeeds, and a message will be logged.

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

PumpkinLB-1.2.tar.gz (5.5 kB view hashes)

Uploaded Source

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