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

Merge branch 'slurm-14.03'

parents 13f99422 a63a161d
No related branches found
No related tags found
No related merge requests found
...@@ -477,16 +477,72 @@ A node_name of \fBlocalhost\fR is mapped to the current host name. ...@@ -477,16 +477,72 @@ A node_name of \fBlocalhost\fR is mapped to the current host name.
These codes identify the reason that a job is waiting for execution. These codes identify the reason that a job is waiting for execution.
A job may be waiting for more than one reason, in which case only A job may be waiting for more than one reason, in which case only
one of those reasons is displayed. one of those reasons is displayed.
.TP 20 .TP 22
\fBAssociationJobLimit\fR
The job's association has reached its maximum job count.
.TP
\fBAssociationResourceLimit\fR
The job's association has reached some resource limit.
.TP
\fBAssociationTimeLimit\fR
The job's association has reached its time limit.
.TP
\fBBadConstraints\fR
The job's constraints can not be satisfied.
.TP
\fBBeginTime\fR
The job's earliest start time has not yet been reached.
.TP
\fBBlockFreeAction\fR
An IBM BlueGene block is being freedand can not allow more jobs to start.
.TP
\fBBlockMaxError\fR
An IBM BlueGene block has too many cnodes in error state to allow more jobs to start.
.TP
\fBCleaning\fR
The job is being requeued and still cleaning up from its previous execution.
.TP
\fBDependency\fR \fBDependency\fR
This job is waiting for a dependent job to complete. This job is waiting for a dependent job to complete.
.TP .TP
\fBNone\fR \fBFrontEndDown\fR
No reason is set for this job. No front end node is available to execute this job.
.TP
\fBInactiveLimit\fR
The job reached the system InactiveLimit.
.TP
\fBInvalidAccount\fR
The job's account is invalid.
.TP
\fBInvalidQOS\fR
The job's QOS is invalid.
.TP
\fBJobHeldAdmin\fR
The job is held by a system administrator.
.TP
\fBJobHeldUser\fR
The job is held by the user.
.TP
\fBJobLaunchFailure\fR
The job could not be launched.
This may be due to a file system problem, invalid program name, etc.
.TP
\fBLicenses\fR
The job is waiting for a license.
.TP
\fBNodeDown\fR
A node required by the job is down.
.TP
\fBNonZeroExitCode\fR
The job terminated with a non\-zero exit code.
.TP .TP
\fBPartitionDown\fR \fBPartitionDown\fR
The partition required by this job is in a DOWN state. The partition required by this job is in a DOWN state.
.TP .TP
\fBPartitionInactive\fR
The partition required by this job is in an Inactive state and not able to
start jobs.
.TP
\fBPartitionNodeLimit\fR \fBPartitionNodeLimit\fR
The number of nodes required by this job is outside of it's The number of nodes required by this job is outside of it's
partitions current limits. partitions current limits.
...@@ -496,32 +552,41 @@ Can also indicate that required nodes are DOWN or DRAINED. ...@@ -496,32 +552,41 @@ Can also indicate that required nodes are DOWN or DRAINED.
The job's time limit exceeds it's partition's current time limit. The job's time limit exceeds it's partition's current time limit.
.TP .TP
\fBPriority\fR \fBPriority\fR
One or more higher priority jobs exist for this partition. One or more higher priority jobs exist for this partition or advanced reservation.
.TP .TP
\fBResources\fR \fBProlog\fR
The job is waiting for resources to become available. It's PrologSlurmctld program is still running.
.TP .TP
\fBNodeDown\fR \fBQOSJobLimit\fR
A node required by the job is down. The job's QOS has reached its maximum job count.
.TP .TP
\fBBadConstraints\fR \fBQOSResourceLimit\fR
The job's constraints can not be satisfied. The job's QOS has reached some resource limit.
.TP .TP
\fBSystemFailure\fR \fBQOSTimeLimit\fR
Failure of the SLURM system, a file system, the network, etc. The job's QOS has reached its time limit.
.TP .TP
\fBJobLaunchFailure\fR \fBReqNodeNotAvail\fR
The job could not be launched. Some node specifically required by the job is not currently available.
This may be due to a file system problem, invalid program name, etc.
.TP .TP
\fBNonZeroExitCode\fR \fBReservation\fR
The job terminated with a non\-zero exit code. The job is waiting its advanced reservation to become available.
.TP
\fBResources\fR
The job is waiting for resources to become available.
.TP
\fBSystemFailure\fR
Failure of the SLURM system, a file system, the network, etc.
.TP .TP
\fBTimeLimit\fR \fBTimeLimit\fR
The job exhausted its time limit. The job exhausted its time limit.
.TP .TP
\fBInactiveLimit\fR \fBQOSUsageThreshold\fR
The job reached the system InactiveLimit. Required QOS threshold has been breached.
.TP
\fBWaitingForScheduling\fR
No reason has been set for this job yet.
Waiting for the scheduler to determine the appropriate reason.
.SH "JOB STATE CODES" .SH "JOB STATE CODES"
Jobs typically pass through several states in the course of their Jobs typically pass through several states in the course of their
......
...@@ -94,28 +94,36 @@ expect { ...@@ -94,28 +94,36 @@ expect {
exp_continue exp_continue
} }
} }
if {$cur_core != -1} { if {$cur_core != -1} {
if {$cur_core == 0} { set limit_core [expr ($cur_core / 1024) - 2]
set limit_core 0 if {$limit_core < 1} {
} else { set limit_core [expr $cur_core / 1024]
set limit_core [expr ($cur_core / 1024) - 2]
} }
} }
if {$cur_fsize != -1} { if {$cur_fsize != -1} {
if {$cur_fsize == 0} { set limit_fsize [expr ($cur_fsize / 1024) - 2]
set limit_fsize 0 if {$limit_fsize < 1} {
} else { set limit_fsize [expr $cur_fsize / 1024]
set limit_fsize [expr ($cur_fsize / 1024) - 2]
} }
} }
if {$cur_nofile != -1} { if {$cur_nofile != -1} {
set limit_nofile [expr $cur_nofile - 2] set limit_nofile [expr $cur_nofile - 2]
if {$limit_nofile < 1} {
set limit_nofile $cur_nofile
}
} }
if {$cur_nproc != -1} { if {$cur_nproc != -1} {
set limit_nproc [expr $cur_nproc - 200] set limit_nproc [expr $cur_nproc - 200]
if {$limit_nproc < 1} {
set limit_nofile $cur_nproc
}
} }
if {$cur_stack != -1} { if {$cur_stack != -1} {
set limit_stack [expr ($cur_stack / 1024) - 2] set limit_stack [expr ($cur_stack / 1024) - 2]
if {$limit_stack < 1} {
set limit_stack [expr $cur_stack / 1024]
}
} }
# #
......
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