No description
Find a file
2022-01-26 17:46:11 +01:00
doc doc update 2015-09-07 09:30:26 +02:00
examples slightly more complex example 2015-11-20 00:13:19 +01:00
jobmanager reuse address to fix [Errno 98] 2022-01-10 15:18:59 +01:00
tests added signalDelay to fix dead lock problems on client timeout, also work in progress to make the test run 2018-06-28 15:13:21 +02:00
.gitignore gitignore update 2015-01-21 19:06:00 +01:00
.travis.yml added signalDelay to fix dead lock problems on client timeout, also work in progress to make the test run 2018-06-28 15:13:21 +02:00
flake.lock update flake 2022-01-26 17:46:11 +01:00
flake.nix update flake 2021-12-09 14:45:41 +01:00
LICENSE copy from jobmanager bakup 2014-09-05 23:33:55 +02:00
MANIFEST.in fix MANIFET.in 2015-04-09 17:54:06 +02:00
poetry.lock update flake 2022-01-26 17:46:11 +01:00
pyproject.toml reuse address to fix [Errno 98] 2022-01-10 15:18:59 +01:00
README.md added problem section to README 2016-09-29 15:15:59 +02:00

jobmanager

PyPI Travis codecov

Easy distributed computing based on the python class SyncManager for remote communication and python module multiprocessing for local parallelism.

Documentation

The documentation is available at http://cimatosa.github.io/jobmanager/

TODO

  • timeout for client
  • single proxy for client and queue for subprocesses
  • user signal to server to retrieve status

known Problems

Python2.7

  • regular shutdown takes very long -> travis tests cancel due to timeout

Python3.4

  • some tests result in segmentation fault (core dumped), nonetheless they pass

Therefore it is highly encouraged to use Python3.5 (and probably higher).

Developer's note (out of date)

After cloning into jobmanager, create a virtual environment

virtualenv --system-site-packages ve_jm
source ve_jm/bin/activate

Install all dependencies

python setup.py develop

Running an example

python examples/simple_example.py

Running tests

python setup.py test