__init__(self,
entries,
basedir=' /scr/buildbot/savedbuilds/NB/2016-4/build-126/mmshare-v3.6/py ... ,
*args,
**kwargs)
(Constructor)
|
|
Constructor.
- Parameters:
hosts - A host list specification. To convert a string representation
from -HOST to a list, use the jobcontrol.host_str_to_list()
function. If no hosts argument is specified, the hosts will be
read from the job control SCHRODINGER_NODEFILE
environment variable.
local - If True, then all jobs will run with -LOCAL . Default
is False.
max_retries - Number of allowed retries per subjob. If this is set, it
is never overridden by the SCHRODINGER_MAX_RETRIES
environment variable. If it is not set, the value in
default_max_retries is used, and
SCHRODINGER_MAX_RETRIES is allowed to override. If
you wish to disable restarting altogether, set this value to
zero.
default_max_retries - Number of allowed retries per subjob. This value can always be
overridden by the SCHRODINGER_MAX_RETRIES
environment variable. Default is zero.
max_failures - Total number of allowed subjob failures before JobDJ
exits. If it is not defined, a default of zero will be used (exit
on any failure after attempting to restart), but this can be
overridden with the SCHRODINGER_MAX_FAILURES
environment variable. To allow an unlimited number of subjob
failures, set max_failures to the module level NOLIMIT constant.
verbosity - There are three allowed verbosity levels: "quiet" -
only warnings and errors are printed; "normal" -
JobDJ progress is printed; and "verbose" -
additional debugging info is printed. Default is
"quiet".
job_class - The class to use as the default job constructor when the
addJob argument is not a BaseJob
instance.
update_delay - The number of seconds to wait between job control database reads
for JobControlJob jobs. (This delay is for an
individual job, not for any job database read.) Default is None,
which causes the module level constant UPDATE_DELAY to be used.
- Overrides:
object.__init__
- (inherited documentation)
|