| Home | Trees | Indices | Help |
|
|---|
|
|
object --+
|
JOB
Representation of a JOB node in a Condor DAG. JOB objects have the
following attributes corresponding to information in the DAG file:
.name
The name of the node in the DAG.
.filename
The name of the submit file for the JOB.
.directory
The initial working directory for the JOB. Set to None to
omit from DAG (job's working directory will be chosen by
Condor).
.done
Boolean indicating if the JOB is done or not. See
DAG.load_rescue() for more information.
.noop
Boolean indicating if the JOB is a no-op or not.
.vars
A dictionary of the name-->value pairs in the VARS line for
the JOB. Leave empty to omit VARS from DAG.
.retry
The number of retries for the job. Set to None to omit
from DAG.
.retry_unless_exit_value
The value of the UNLESS-EXIT suffix of the RETRY line.
Set to None to omit from DAG.
.priority
.category
The PRIORITY value and CATEGORY name for the node in the
DAG. Set to None to omit from the DAG.
.parents
.children
Sets of the parent and child nodes of JOB. The sets
contain references to the node objects, not their names.
.prescript
.prescriptargs
.postscript
.postscriptargs
The names and lists of arguments of the PRE and POST
scripts. Set to None to omit from DAG.
.abort_dag_on_abortexitvalue
.abort_dag_on_dagreturnvalue
The ABORT-DAG-ON abort exit value and DAG return value for
the JOB. Set to None to omit from DAG.
For more information about the function of these parameters, refer
to the Condor documentation.
|
|||
|
|||
|
|||
|
Inherited from |
|||
|
|||
keyword =
|
|||
|
|||
|
state Get the state of the node. |
|||
|
Inherited from |
|||
|
|||
x.__init__(...) initializes x; see help(type(x)) for signature
|
Write the lines describing this node to the file-like object f. The object must provide a .write() method. If progress is not None, it will be incremented by 1 for every line written. |
|
|||
stateGet the state of the node. One of 'wait', 'idle', 'run', 'abort', 'stop', 'success', 'fail'. NOTE: this feature is not implemented at this time.
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Tue Dec 12 00:34:18 2017 | http://epydoc.sourceforge.net |