Skip to content
Snippets Groups Projects
Commit 04a1cfaf authored by Morris Jette's avatar Morris Jette
Browse files

Correct explanation of job requue option

bug 1742
parent cab0be71
No related branches found
No related tags found
No related merge requests found
......@@ -1068,9 +1068,10 @@ ignored if \fISchedulerType=sched/wiki\fR or
.TP
\fB\-\-no\-requeue\fR
Specifies that the batch job should not be requeued after node failure.
Specifies that the batch job should never be requeued under any circumstances.
Setting this option will prevent system administrators from being able
to restart the job (for example, after a scheduled downtime).
to restart the job (for example, after a scheduled downtime), recover from
a node failure, or be requeued upon preemption by a higher priority job.
When a job is requeued, the batch script is initiated from its beginning.
Also see the \fB\-\-requeue\fR option.
The \fIJobRequeue\fR configuration parameter controls the default
......@@ -1275,7 +1276,9 @@ silently ignored.
.TP
\fB\-\-requeue\fR
Specifies that the batch job should be requeued after node failure.
Specifies that the batch job should eligible to being requeue.
The job may be requeued explicitly by a system administrator, after node
failure, or upon preemption by a higher priority job.
When a job is requeued, the batch script is initiated from its beginning.
Also see the \fB\-\-no\-requeue\fR option.
The \fIJobRequeue\fR configuration parameter controls the default
......
......@@ -1192,11 +1192,13 @@ By default, any existing file is truncated.
.TP
\fBJobRequeue\fR
This option controls what to do by default after a node failure.
If \fBJobRequeue\fR is set to a value of 1, then any batch job running
on the failed node will be requeued for execution on different nodes.
If \fBJobRequeue\fR is set to a value of 0, then any job running
on the failed node will be terminated.
This option controls the default ability for batch jobs to be requeued.
Jobs may be requeued explicitly by a system administrator, after node
failure, or upon preemption by a higher priority job.
If \fBJobRequeue\fR is set to a value of 1, then batch job may be requeued
unless explicitly disabled by the user.
If \fBJobRequeue\fR is set to a value of 0, then batch job will not be requeued
unless explicitly enabled by the user.
Use the \fBsbatch\fR \fI\-\-no\-requeue\fR or \fI\-\-requeue\fR
option to change the default behavior for individual jobs.
The default value is 1.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment