Skip to main content

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:

  1. Establish a connection to the server’s socket.

  2. 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.

  3. 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:

# http://stackoverflow.com/questions/18414020/memory-usage-keep-growing-with-pythons-multiprocessing-pool

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

errand-boy-0.3.0.tar.gz (9.0 kB view details)

Uploaded Source

File details

Details for the file errand-boy-0.3.0.tar.gz.

File metadata

  • Download URL: errand-boy-0.3.0.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for errand-boy-0.3.0.tar.gz
Algorithm Hash digest
SHA256 91d4ec14a40b7e0ae37f746187da13340276be67c840929202977616622d9346
MD5 5fa8dab8d8d8eed806b023643b9022bf
BLAKE2b-256 68fe3e1a80dcb1b6ae792b6b1f2c5a5efd41ebdaf6a380461043cc7ffdd3d786

See more details on using hashes here.

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