Establish a connection to the errand-boy deamon to execute commands without the memory overhead incurred by os.fork().
Project description
What does it do?
Uses Python multiprocessing to maintain a pool of worker processes used to execute arbitrary terminal commands.
Why not use subprocess.Popen()?
Under the hood subprocess.Popen() uses os.fork(), which copies the currently running process’ memory before launching the command you want to run. If your process uses a lot of memory, such as a Celery worker using an eventlet pool, this can cause a “Cannot allocate memory” error.
errand-boy still uses subprocess.Popen(), but tries to keep a low memory footprint. Your celery greenthread workers can communicate with it via asynchronous network calls.
Further reading:
# http://stackoverflow.com/a/13329386/241955 # http://stackoverflow.com/a/14942111/241955
Setup
Install:
pip install errand-boy
# optional pip install setproctitle
Usage
Run tests:
cd errand-boy/ python -m unittest discover
Run server:
python -m errand_boy.run
Run client (useful for testing/debugging):
python -m errand_boy.run 'ls -al'
Use the client in your code:
from errand_boy.transports.unixsocket import UNIXSocketTransport transport = UNIXSocketTransport() process, stdout, stderr = transport.run_cmd('ls -al') print process.returncode print stdout print stderr
Use a subprocess.Popen-like interface:
from errand_boy.transports.unixsocket import UNIXSocketTransport transport = UNIXSocketTransport() process = transport.Popen('ls -al') stdout, stderr = process.communicate(input='foo') print process.returncode print stdout print stderr
Run load tests:
python -m errand_boy.run --max-accepts=0 pip install Fabric locustio cd errand-boy/ fab locust_local
Does it work in other languages?
It shouldn’t be too diffcult to write client libraries in other languages. You just need to:
Establish a connection to the server’s socket.
Send the command you wish to execute as a string followed by \r\n\r\n. Then send your input or an empty string followed by \r\n\r\n.
Receive data back from the connection until the server stops sending back data. The server will close the connection when it’s done.
Development
Further reading:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file errand-boy-0.1.0.tar.gz
.
File metadata
- Download URL: errand-boy-0.1.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40b226c73b5adeb1ce62725acd32bed8dfcef156508ddfca59e469cda4d3716e |
|
MD5 | 05b890c1f979d8251faa4a4a2995d004 |
|
BLAKE2b-256 | 739f0aefbf65939f439f6d4985a71bbb5e3c31e48f575ee8e96d4bf29410249c |