Job IDs and Job Status¶
- class ornithology.JobID(cluster, proc)[source]¶
A class that encapsulates a (cluster ID, proc ID) pair.
- Parameters:
cluster – The cluster ID for the job.
proc – The process ID for the job.
- class ornithology.JobStatus(value)[source]¶
An enumeration of the HTCondor job states.
Warning
UNMATERIALIZEDis not a real job state! It is used as the initial state for jobs in some places, but will never show up in (for example) the job queue log.- IDLE = '1'¶
- RUNNING = '2'¶
- REMOVED = '3'¶
- COMPLETED = '4'¶
- HELD = '5'¶
- TRANSFERRING_OUTPUT = '6'¶
- SUSPENDED = '7'¶
- UNMATERIALIZED = '100'¶