Python3 package to handle job submission to a compute farm
- Introduction
- Installation
- Usage - command line
- Usage - running within a script
- License
- Feedback/Issues
This is a Python3 package to handle job submission to a compute farm. Currently supports Platform's LSF. It has a script to make submitting jobs easier and also an API to run jobs from within scripts.
Farmpy has the following dependencies:
We assume that you are using Platform's LSF, i.e. it is installed already with bsub and lsadmin in your path.
Details for installing Farmpy are provided below. If you encounter an issue when installing Farmpy please contact your local system administrator. If you encounter a bug please log it here or email us at [email protected].
python3 setup.py install
The test can be run from the top level directory:
python3 setup.py test
To submit a job called "name" that asks for 1GB of memory, runs the script foo.sh and writes stdout and stderr to name.o and name.e:
bsub.py 1 name foo.sh
To submit a job that will only run when job with ID 42 has finished, use:
bsub.py --done 42 1 name foo.sh
If you want 10GB of /tmp space on the node:
bsub.py --tmp_space 10 1 name foo.sh
There are many more options. Use -h or --help to see the full list of options
bsub.py --help
To get a tsv file of CPU, memory usage etc of a job:
bsub_out_to_stats bsub.output
This works with muliple files. e.g.:
bsub_out_to_stats bsub.output1 bsub.output2
or
bsub_out_to_stats *.output
Each file can contain the output of more than one job.
Amongst other things, you run a job, set dependencies, change queues and resources and run arrays. Use
help(lsf)
to find out more.
job1 = lsf.Job('out', 'err', 'name', 'normal', 1, 'foo.sh')
job1.run()
This created a job called 'name', which will run in the normal queue. It asked for 1GB of memory and will write stdout/stderr to the files out/err. It runs the script run.sh.
When the job was run, the variable job1.job_id was set, so that you can use dependencies. For example:
job2 = lsf.Job('out2', 'err2', 'job2', 'normal', 1, 'run2.sh')
job2.add_dependency(job1.job_id)
job2.run()
Alternatively, dependcies can be set using job names, but these might not be unique so IDs are safer. If you want to use a name instead:
job2.add_dependency(job1.name)
You can run a job array using start= and end= when constructing a Job. Example:
job = ('out', 'err', 'name', 'normal', 1, 'run.sh INDEX', start=1, end=10)
This sets up a job array with 10 elements. stdout files will be called out.1, out.2, ....etc and similarly for stderr. Every appearance of 'INDEX' in the command is translated to be the job index (technically, the $LSB_JOBINDEX environment variable). So this would submit 10 jobs to LSF:
run.sh 1
run.sh 2
...
run.sh 10
Farmpy is free software, licensed under GPLv3.
Please report any issues to the issues page or email [email protected].