Skip to main content

A simple and lightweight parallel task engine

Project description

Paralleltask

Paralleltask is a simple and lightweight parallel task engine. It can launch a given number of tasks from a batch of independent tasks, and keep this number of running tasks until all tasks are completed.

Why Paralleltask?

Suppose you have dozens or hundreds of independent tasks that can run in parallel (non-independent tasks can be put together to form an independent task group). Due to the limitation of computing resources, you cannot run all tasks at the same time. Of course, it is not realistic to run one by one, so you want to run a specific number of tasks at the same time, and keep this number of running tasks (once a task is completed, start a new task) until all tasks are completed.

  • zero configuration, no dependencies, no prior knowledge required, easy to install and use.

  • support breakpoint resume, automatically re-execute failed tasks and ignore successful tasks.

  • automatically kill submitted tasks once the main program receives a termination signal (Ctrl+C).

  • support multiple task scheduling systems, such as LOCAL, SGE, PBS, SLURM and LSF.

  • automatically convert relative path to absolute path in shell scripts.

  • support python 2 and 3.

Installation

pip install paralleltask

If you prefer to use the drmaa library, instead of using commands (such as qsub) to submit and control tasks, see here to install drmaa.

Usage

paralleltask work.sh

The only required input file work.sh is a command collection file, which contains all the task commands that need to be run. A task command can be one or more lines, and an independent task group can be set by the parameter --lines. Using paralleltask -h for details.

Testing

# produce a work file: test.sh
for i in {1..50};do echo "sleep ${i} && echo \"I am subtask${i}\"" >> test.sh;done;
# run
paralleltask test.sh

A demo file test.sh is here

Configuration

If you want to change some of the default settings, you can pass parameters (use paralleltask -h for details) or directly edit the configure template file cluster.cfg.

Note: Paralleltask will replace {mem}, {cpu}, {bash}, {out}, {err}, {script} and {job_id} with specific values needed for each jobs, see the configure template file for details.

Getting Help

Feel free to raise an issue at the issue page, and welcome to pull request if you find a bug or have an idea for this project.

Star

You can track updates by tab the Star button on the upper-right corner at the github page.

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

Paralleltask-0.2.2.tar.gz (22.4 kB view hashes)

Uploaded Source

Built Distribution

Paralleltask-0.2.2-py3-none-any.whl (24.2 kB view hashes)

Uploaded Python 3

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