Skip to main content

A simple JIT job management framework in Python.

Project description

https://travis-ci.org/materialsproject/custodian.png

Custodian is a simple, robust and flexible just-in-time (JIT) job management framework written in Python. Using custodian, you can create wrappers that perform error checking, job management and error recovery. It has a simple plugin framework that allows you to develop specific job management workflows for different applications.

The specific use case for custodian is for long running jobs, with potentially random errors. For example, there may be a script that takes several days to run on a server, with a 1% chance of some IO error causing the job to fail. Using custodian, one can develop a mechanism to gracefully recover from the error, and potentially restart the job if necessary.

Custodian is now in an very early alpha, and there may be many frequent API changes. Please use with care.

Getting custodian

Stable version

The version at the Python Package Index (PyPI) is always the latest stable release that will be hopefully, be relatively bug-free. The easiest way to install custodian on any system is to use easy_install or pip, as follows:

easy_install custodian

or:

pip install custodian

Some plugins (e.g., vasp management) require additional setup (please see pymatgen’s documentation).

Developmental version

The bleeding edge developmental version is at the custodian’s Github repo. The developmental version is likely to be more buggy, but may contain new features. The Github version include test files as well for complete unit testing. After cloning the source, you can type:

python setup.py install

or to install the package in developmental mode:

python setup.py develop

Requirements

Custodian requires Python 2.7+. There are no other required dependencies.

Optional dependencies

Optional libraries that are required if you need certain features:

  1. pymatgen 2.5+: To use the plugin for VASP.

  2. nose - For complete unittesting.

Basic usage

The main class in the workflow is known as Custodian, which manages a series of jobs with a list of error handlers. To use custodian, you need to implement concrete implementation of the abstract base classes custodian.custodian.Job and custodian.custodian.ErrorHandler. An very simple example implementation is given in the examples.py script in the scripts directory.

Other specific examples for electronic structure calculations based on the Vienna Ab Initio Simulation Package (VASP) are implemented in the custodian.vasp package. A simple example of a script using Custodian to run a two-relaxation VASP job is as follows:

from custodian.custodian import Custodian
from custodian.vasp.handlers import VaspErrorHandler, UnconvergedErrorHandler
from custodian.vasp.jobs import VaspJob

handlers = [VaspErrorHandler(), UnconvergedErrorHandler(),
            PoscarErrorHandler()]
jobs = VaspJob.double_relaxation_run(args.command.split())
c = Custodian(handlers, jobs, max_errors=10)
c.run()

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

custodian-0.2.2a.tar.gz (12.5 kB view details)

Uploaded Source

Built Distribution

custodian-0.2.2a-py2.7.egg (39.3 kB view details)

Uploaded Source

File details

Details for the file custodian-0.2.2a.tar.gz.

File metadata

  • Download URL: custodian-0.2.2a.tar.gz
  • Upload date:
  • Size: 12.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for custodian-0.2.2a.tar.gz
Algorithm Hash digest
SHA256 c18a6ece8a4f3b4ced1f84e13c3d15eb60006d83e33a264ff5d0f50a8077d0d4
MD5 1f231553d386afa8002d88a5abcd92cd
BLAKE2b-256 d5111440cb824887030f459fc6eb5d6090a6d3956d7f2d7c9f887da2d8149810

See more details on using hashes here.

File details

Details for the file custodian-0.2.2a-py2.7.egg.

File metadata

File hashes

Hashes for custodian-0.2.2a-py2.7.egg
Algorithm Hash digest
SHA256 ea92b73ec24a6f48ab84bdd250fb3cdc280ae5d73d1e931778e668b1055c8aec
MD5 6fdfacc5bd5de1bd99bfbcdedaffa441
BLAKE2b-256 634e64edd090a3c66483df8e1d5b763f94920787f4b6d4f95de27f23564d7327

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