clusterjob.backends.pbs module¶
PBS/TORQUE backend
-
class
clusterjob.backends.pbs.PbsBackend[source]¶ Bases:
clusterjob.backends.ClusterjobBackendPBS/TORQUE Backend
Attributes: - name (str) – Name of the backend
- extension (str) – Extension for job scripts
- prefix (str) – The prefix for every line in the resource header
- status_mapping (dict) – map single-letter PBS status codes to clusterjob integer status codes.
- resource_replacements (dict) – mapping of the common clusterjob resource keys to command line options of the qsub command.
- job_vars (dict) – mapping of core environment variables to PBS-specific environment variables.
-
name= 'pbs'¶
-
extension= 'pbs'¶
-
prefix= '#PBS'¶
-
cmd_submit(jobscript)[source]¶ Given a
JobScriptinstance, return aqsubcommand that submits the job to the scheduler, as a list of program arguments.
-
get_job_id(response)[source]¶ Given the stdout from the command returned by
cmd_submit(), return a job ID
-
cmd_status(run, finished=False)[source]¶ Given a
AsyncResultinstance, return aqstatcommand that queries the scheduler for the job status. It is assumed that by passing-xtoqstat, results for both running and finished jobs can be obtained.
-
get_status(response, finished=False)[source]¶ Given the stdout from the command returned by
cmd_status(), return one of the status code defined inclusterjob.status, or None if the status cannot be determined
-
cmd_cancel(run)[source]¶ Given a
AsyncResultinstance, return aqdelcommand that cancels the run, as a list of command arguments.