A command line job manager with flexible support for retries, timeouts, logging, notifications, and more
Project description
Jobman automates the process of running and monitoring jobs on the command line. Jobman supports
- running commands in the background immune to hangups
- logging command output
- retrying commands
- aborting commands after timeout
- delaying command execution for a specified time or event
- sending notifications on command success or failure
Documentation
Visit the :book: jobman documentation site :book: for complete information on using jobman.
Requirements
Jobman runs on UNIX-like operating systems including Linux and MacOS. Windows is not supported.
Jobman requires Python3.9+.
Installation
Install or upgrade from PyPI with
$ pip install jobman
Example
The example below uses jobman to run a Python script train.py
in the background and immune to hangups (e.g., a SIGHUP from an SHH timeout).
Jobman will ensure 60 seconds have passed and that the file data.csv
exists before starting the program. If those conditions haven't been met by 5:00PM on March 5, 2032, jobman will abort the job.
Jobman will retry the program up to five times until there's one successful run, defined as an exit code of 0
or 42
, waiting ten seconds between retries.
If the job succeeds, jobman will send a notification email. If the job fails, jobman will send an SMS message.
$ jobman \
--wait-duration 60s --wait-for-file data.csv \
--abort-time "2032-03-05T17:00:00" \
--retry-attempts 5 --retry-delay 10s -c 0 -c 42 \
--notify-on-job-success my-email --notify-on-job-failure my-cell \
train.py
12e4b604
After submitting the train.py
job above, use jobman show
to display details on job progress:
jobman show 12e4b604
To view a running log of the consolidated stdout and stderr streams of the latest run of the job, use jobman logs
:
jobman logs 12e4b604 --follow
Alternatives
Jobman aims to be reliable and fully-featured. It operates without requiring a system service/daemon for orchestration.
Alternative tools for similar use cases include:
- cron: for scheduling repeated executions of a job
- Airflow, Prefect, and Dagster: for managing dependencies between multiple jobs
- supervisord: for daemon-based job management
Developing
Jobman uses pyenv for Python version management and poetry for builds. Before working on Jobman, ensure you have pyenv
and poetry
installed.
The Makefile
defines targets for common operations during development, including the following:
make setup
: set up and install the packagemake fmt
: run the autoformattersmake test
: run the type tests and unit test suitemake build
: build the jobman wheel
To release a new version of the package, use the bumpver.sh
script. For example, to update to version 1.2.3, run ./bumpver.sh 1.2.3
.
Contributing
Feature requests, bug reports, and pull requests are welcome! See CONTRIBUTING.md for details on how to contribute to jobman.
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
Built Distribution
File details
Details for the file jobman-0.4.0.tar.gz
.
File metadata
- Download URL: jobman-0.4.0.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cd4e0cda2cd43426a8eb75ba03736bb2cec2508148df9a683a0b4389b166b7b |
|
MD5 | d9c003e93ea5151c9b7db5026e00eae2 |
|
BLAKE2b-256 | eddfaf9f82bbb6f8e4f672de0e82269f91fb607cbacedfe8aa2f05b2a73c2778 |
File details
Details for the file jobman-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: jobman-0.4.0-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 049072f3bccd3417211892a9d9de9d3c686a94ef0b9cad3b8d86f89b73a99026 |
|
MD5 | ebca5418cdb5bfcab129628ef3871bc4 |
|
BLAKE2b-256 | 6a609ec4e529cff0f2f17e0cc69730d26e18a93b965a2a163b31f4fdc8817212 |