Slurm guide for multiple queue mode
Amazon ParallelCluster version 2.9.0 introduced multiple queue mode and a new scaling architecture for Slurm Workload Manager (Slurm).
The following sections provide a general overview on using a Slurm cluster with the newly introduced scaling architecture.
Overview
The new scaling architecture is based on Slurm’s Cloud Scheduling Guide
Cloud node lifecycle
Throughout their lifecycle, cloud nodes enter several if not all of the following states:
POWER_SAVING
, POWER_UP
(pow_up
), ALLOCATED
(alloc
),
and POWER_DOWN
(pow_dn
). In some cases, a cloud node might enter the OFFLINE
state. The following list details several aspects of these states in the cloud node lifecycle.
-
A node in a
POWER_SAVING
state appears with a~
suffix (for exampleidle~
) insinfo
. In this state, there is no EC2 instance backing the node. However, Slurm can still allocate jobs to the node. -
A node transitioning to a
POWER_UP
state appears with a#
suffix (for exampleidle#
) insinfo
. -
When Slurm allocates job to a node in a
POWER_SAVING
state, the node automatically transfers to aPOWER_UP
state. Otherwise, nodes can be placed in thePOWER_UP
state manually using thescontrol update nodename=
command. In this stage, thenodename
state=power_upResumeProgram
is invoked, and EC2 instances are launched and configured to back aPOWER_UP
node. -
A node that is currently available for use appears without any suffix (for example
idle
) insinfo
. After the node is set up and has joined the cluster, it becomes available to run jobs. In this stage, the node is properly configured and ready for use. As a general rule, we recommend that the number of instances in EC2 be the same as the number of available nodes. In most cases, static nodes are always available after the cluster is created. -
A node that is transitioning to a
POWER_DOWN
state appears with a%
suffix (for exampleidle%
) insinfo
. Dynamic nodes automatically enterPOWER_DOWN
state after scaledown_idletime. In contrast, static nodes in most cases aren't powered down. However, nodes can be placed in thePOWER_DOWN
state manually using thescontrol update nodename=
command. In this state, the instance associated with a node is terminated, and node is reset back to thenodename
state=powering_downPOWER_SAVING
state to future use after scaledown_idletime. Thescaledown-idletime
setting is saved to the Slurm configuration as theSuspendTimeout
setting. -
A node that is offline appears with a
*
suffix (for exampledown*
) insinfo
. A node goes offline if Slurm controller can't contact the node or if the static nodes are disabled and the backing instances are terminated.
Now consider the node states shown in the following sinfo
example.
$
sinfo
PARTITION AVAIL TIMELIMIT NODES STATE NODELIST efa up infinite 4 idle~ efa-dy-c5n18xlarge-[1-4] efa up infinite 1 idle efa-st-c5n18xlarge-1 gpu up infinite 1 idle% gpu-dy-g38xlarge-1 gpu up infinite 9 idle~ gpu-dy-g38xlarge-[2-10] ondemand up infinite 2 mix# ondemand-dy-c52xlarge-[1-2] ondemand up infinite 18 idle~ ondemand-dy-c52xlarge-[3-10],ondemand-dy-t2xlarge-[1-10] spot* up infinite 13 idle~ spot-dy-c5xlarge-[1-10],spot-dy-t2large-[1-3] spot* up infinite 2 idle spot-st-t2large-[1-2]
The spot-st-t2large-[1-2]
and efa-st-c5n18xlarge-1
nodes already have backing
instances set up and are available for use. The ondemand-dy-c52xlarge-[1-2]
nodes are in the
POWER_UP
state, and they should be available within a few minutes. The gpu-dy-g38xlarge-1
node is in the POWER_DOWN
state, and it will transition into POWER_SAVING
state after scaledown_idletime (defaults to 120 seconds).
All of the other nodes are in POWER_SAVING
state with no EC2 instances backing them.
Working with an available node
An available node is backed by an EC2 instance. By default, the node name can be used to directly SSH into the
instance (for example ssh efa-st-c5n18xlarge-1
). The private IP address of the instance can be retrieved
using the scontrol show nodes
command and checking the
nodename
NodeAddr
field. For nodes that aren't available, the NodeAddr
field shouldn't point to a
running EC2 instance. Rather, it should be the same as the node name.
Job states and submission
Jobs submitted in most cases are immediately allocated to nodes in the system, or placed in pending if all the nodes are allocated.
If nodes allocated for a job include any nodes in a POWER_SAVING
state, the job starts out with a
CF
, or CONFIGURING
state. At this time, the job waits for the nodes in the
POWER_SAVING
state to transition to POWER_UP
state and become available.
After all nodes allocated for a job are available, the job enters the RUNNING
(R
)
state.
By default, all jobs are submitted to the default queue (known as a partition in Slurm). This is signified by
a *
suffix after the queue name. You can select a queue using the -p
job submission
option.
All nodes are configured with the following features, which can be used in job submission commands:
-
An instance type (for example
c5.xlarge
) -
A node type (This is either
dynamic
orstatic
.)
You can see all of the features available for a particular node by using the scontrol show nodes
command and checking the nodename
AvailableFeatures
list.
Another consideration is jobs. First consider the initial state of the cluster, which you can view by running
the sinfo
command.
$
sinfo
PARTITION AVAIL TIMELIMIT NODES STATE NODELIST efa up infinite 4 idle~ efa-dy-c5n18xlarge-[1-4] efa up infinite 1 idle efa-st-c5n18xlarge-1 gpu up infinite 10 idle~ gpu-dy-g38xlarge-[1-10] ondemand up infinite 20 idle~ ondemand-dy-c52xlarge-[1-10],ondemand-dy-t2xlarge-[1-10] spot* up infinite 13 idle~ spot-dy-c5xlarge-[1-10],spot-dy-t2large-[1-3] spot* up infinite 2 idle spot-st-t2large-[1-2]
Note that spot
is the default queue. It is indicated by the *
suffix.
Submit a job to one static node to the default queue (spot
).
$
sbatch --wrap "sleep 300" -N 1 -C static
Submit a job to one dynamic node to the EFA
queue.
$
sbatch --wrap "sleep 300" -p efa -C dynamic
Submit a job to eight (8) c5.2xlarge
nodes and two (2) t2.xlarge
nodes to the
ondemand
queue.
$
sbatch --wrap "sleep 300" -p ondemand -N 10 -C "[c5.2xlarge*8&t2.xlarge*2]"
Submit a job to one GPU node to the gpu
queue.
$
sbatch --wrap "sleep 300" -p gpu -G 1
Now consider the state of the jobs using the squeue
command.
$
squeue
JOBID PARTITION NAME USER ST TIME NODES NODELIST(REASON) 12 ondemand wrap ubuntu CF 0:36 10 ondemand-dy-c52xlarge-[1-8],ondemand-dy-t2xlarge-[1-2] 13 gpu wrap ubuntu CF 0:05 1 gpu-dy-g38xlarge-1 7 spot wrap ubuntu R 2:48 1 spot-st-t2large-1 8 efa wrap ubuntu R 0:39 1 efa-dy-c5n18xlarge-1
Jobs 7 and 8 (in the spot
and efa
queues) are already running (R
). Jobs
12 and 13 are still configuring (CF
), probably waiting for the instances to become available.
# Nodes states corresponds to state of running jobs
$
sinfo
PARTITION AVAIL TIMELIMIT NODES STATE NODELIST efa up infinite 3 idle~ efa-dy-c5n18xlarge-[2-4] efa up infinite 1 mix efa-dy-c5n18xlarge-1 efa up infinite 1 idle efa-st-c5n18xlarge-1 gpu up infinite 1 mix~ gpu-dy-g38xlarge-1 gpu up infinite 9 idle~ gpu-dy-g38xlarge-[2-10] ondemand up infinite 10 mix# ondemand-dy-c52xlarge-[1-8],ondemand-dy-t2xlarge-[1-2] ondemand up infinite 10 idle~ ondemand-dy-c52xlarge-[9-10],ondemand-dy-t2xlarge-[3-10] spot* up infinite 13 idle~ spot-dy-c5xlarge-[1-10],spot-dy-t2large-[1-3] spot* up infinite 1 mix spot-st-t2large-1 spot* up infinite 1 idle spot-st-t2large-2
Node state and features
In most cases, node states are fully managed by Amazon ParallelCluster according to the specific processes in the cloud node lifecycle described earlier in this topic.
However, Amazon ParallelCluster also replaces or terminates unhealthy nodes in DOWN
and
DRAINED
states and nodes that have unhealthy backing instances. For more information, see clustermgtd.
Partition states
Amazon ParallelCluster supports the following partition states. A Slurm partition is a queue in Amazon ParallelCluster.
-
UP
: Indicates that the partition is in an active state. This is the default state of a partition. In this state, all nodes in the partition are active and available for use. -
INACTIVE
: Indicates that the partition is in the inactive state. In this state, all instances backing nodes of an inactive partition are terminated. New instances aren't launched for nodes in an inactive partition.
pcluster start and stop
When pcluster stop is run, all partitions are placed in the
INACTIVE
state, and the Amazon ParallelCluster processes keep the partitions in the INACTIVE
state.
When pcluster start is run, all partitions are initially placed
in the UP
state. However, Amazon ParallelCluster processes don't keep the partition in an UP
state. You need to change partition states manually. All static nodes become available after a few minutes. Note that
setting a partition to UP
doesn't power up any dynamic capacity. If initial_count is greater than max_count, then initial_count might not be satisfied
when the partition state is changed to the UP
state.
When pcluster start and pcluster stop are running, you can check the state of the cluster by running the pcluster status command and checking the
ComputeFleetStatus
. The following lists possible states:
-
STOP_REQUESTED
: The pcluster stop request is sent to the cluster. -
STOPPING
: Thepcluster
process is currently stopping the cluster. -
STOPPED
: Thepcluster
process finished the stopping process, all partitions are inINACTIVE
state, and all compute instances are terminated. -
START_REQUESTED
: The pcluster start request is sent to the cluster. -
STARTING
: Thepcluster
process is currently starting the cluster -
RUNNING
: Thepcluster
process finished the starting process, all partitions are inUP
state, and static nodes will be available after a few minutes.
Manual control on queues
In some cases, you may want to have some manual control over the nodes or queue (known as a partition in Slurm) in a cluster. You can manage nodes in a cluster through the following common procedures.
-
Power up dynamic nodes in
POWER_SAVING
state: Run thescontrol update nodename=
command or submit a placeholdernodename
state=power_upsleep 1
job requesting for a certain number of nodes and rely on Slurm to power up required number of nodes. -
Power down dynamic nodes before scaledown_idletime: Set dynamic nodes to
DOWN
with thescontrol update nodename=
command. Amazon ParallelCluster automatically terminates and resets the downed dynamic nodes. In general, we don't recommend setting nodes tonodename
state=downPOWER_DOWN
directly using thescontrol update nodename=
command. This is because Amazon ParallelCluster automatically handles the power down process. No manual intervention is necessary. Therefore, we recommend that you try to set nodes tonodename
state=power_downDOWN
whenever possible. -
Disable a queue (partition) or stop all static nodes in specific partition: Set specific the queue to
INACTIVE
with thescontrol update partition=
command. Doing this terminates all instances backing nodes in the partition.queue name
state=inactive -
Enable a queue (partition): Set specific the queue to
INACTIVE
with thescontrol update partition=
command.queue name
state=up
Scaling behavior and adjustments
Here is an example of the normal scaling workflow:
-
The scheduler receives a job that requires two nodes.
-
The scheduler transitions two nodes to a
POWER_UP
state, and callsResumeProgram
with the node names (for examplequeue1-dy-c5xlarge-[1-2]
). -
ResumeProgram
launches two EC2 instances and assigns the private IP addresses and hostnames ofqueue1-dy-c5xlarge-[1-2]
, waiting forResumeTimeout
(the default period is 60 minutes (1 hour)) before resetting the nodes. -
Instances are configured and join the cluster. Job starts running on instances.
-
Job is done.
-
After the configured
SuspendTime
has elapsed (which is set to scaledown_idletime), the instances are put in thePOWER_SAVING
state by the scheduler. Scheduler placesqueue1-dy-c5xlarge-[1-2]
intoPOWER_DOWN
state and callsSuspendProgram
with the node names. -
SuspendProgram
is called for two nodes. Nodes remain in thePOWER_DOWN
state, for example, by remainingidle%
for aSuspendTimeout
(the default period is 120 seconds (2 minutes)). Afterclustermgtd
detects that nodes are powering down, it terminates the backing instances. Then, it configuresqueue1-dy-c5xlarge-[1-2]
into idle state and resets private IP address and hostname so they can be power up for future jobs again.
Now, if things go wrong and an instance for a particular node can't be launched for some reason, then the following happens.
-
Scheduler receives a job that requires two nodes.
-
Scheduler places two cloud bursting nodes into
POWER_UP
state and callsResumeProgram
with the nodenames, (for examplequeue1-dy-c5xlarge-[1-2]
). -
ResumeProgram
launches only one (1) EC2 instance and configuresqueue1-dy-c5xlarge-1
, but it failed to launch an instance forqueue1-dy-c5xlarge-2
. -
queue1-dy-c5xlarge-1
will not be affected and will come online after reachingPOWER_UP
state. -
queue1-dy-c5xlarge-2
is placed inPOWER_DOWN
state, and the job is requeued automatically because Slurm detects a node failure. -
queue1-dy-c5xlarge-2
becomes available afterSuspendTimeout
(the default is 120 seconds (2 minutes)). In the meantime, the job is requeued and can start running on another node. -
The above process is repeated until the job can run on an available node without a failure occurring.
There are two timing parameters that can be adjusted if needed.
-
ResumeTimeout
(the default is 60 minutes (1 hour)):ResumeTimeout
controls the time Slurm waits before putting the node the down state.-
It might be useful to extend this if your pre/post installation process takes nearly that long.
-
This is also the maximum time that Amazon ParallelCluster waits before replacing or resetting a node if there is an issue. Compute nodes self-terminate if any error occurs during launch or setup. Next, Amazon ParallelCluster processes also replaces the node when it sees that the instance is terminated.
-
-
SuspendTimeout
(the default is 120 seconds (2 minutes)):SuspendTimeout
controls how quickly nodes get placed back into the system and ready for use again.-
A shorter
SuspendTimeout
would mean that nodes will be reset more quickly, and Slurm is able to try to launch instances more frequently. -
A longer
SuspendTimeout
makes failed nodes reset more slowly. In the meantime, Slurm tires to use other nodes. IfSuspendTimeout
is more than a few minutes, Slurm tries to cycle through all nodes in the system. A longerSuspendTimeout
might be beneficial for large-scale systems (over1,000 nodes) for reducing stress on Slurm by frequently re-queuing failing jobs. -
Note that
SuspendTimeout
doesn't refer to the time Amazon ParallelCluster waited to terminate a backing instance for a node. Backing instances forpower down
nodes are immediately terminated. The terminate process usually is finished a few minutes. However, during this time, the node remains in the power down state and not available for use in the scheduler.
-
Logs for new architecture
The following lit contains the key logs for the multiple queue architecture. The log stream name used with
Amazon CloudWatch Logs has the format
,
where {hostname}
.{instance_id}
.{logIdentifier}
logIdentifier
follows the log names. For more information, see Integration with Amazon CloudWatch Logs.
-
ResumeProgram
:/var/log/parallelcluster/slurm_resume.log
(slurm_resume
) -
SuspendProgram
:/var/log/parallelcluster/slurm_suspend.log
(slurm_suspend
) -
clustermgtd
:/var/log/parallelcluster/clustermgtd.log
(clustermgtd
) -
computemgtd
:/var/log/parallelcluster/computemgtd.log
(computemgtd
) -
slurmctld
:/var/log/slurmctld.log
(slurmctld
) -
slurmd
:/var/log/slurmd.log
(slurmd
)
Common issues and how to debug:
Nodes that failed to launch, power up, or join the cluster:
-
Dynamic nodes:
-
Check the
ResumeProgram
log to see ifResumeProgram
was ever called with the node. If not, check theslurmctld
log to determine if Slurm ever tried to callResumeProgram
with the node. Note that incorrect permissions onResumeProgram
might cause it to fail silently. -
If
ResumeProgram
is called, check to see if an instance was launched for the node. If the instance can't be launched, there should be clear error message as to why the instance failed to launch. -
If an instance was launched, there may have been some problem during the bootstrap process. Find the corresponding private IP address and instance ID from the
ResumeProgram
log and look at corresponding bootstrap logs for the specific instance in CloudWatch Logs.
-
-
Static nodes:
-
Check the
clustermgtd
log to see if instances were launched for the node. If not, there should be clear errors on why the instances failed to launch. -
If an instance was launched, there is some problem during bootstrap process. Find the corresponding private IP and instance ID from the
clustermgtd
log and look at corresponding bootstrap logs for the specific instance in CloudWatch Logs.
-
Nodes replaced or terminated unexpectedly, node failures
-
Nodes replaced/terminated unexpectedly
-
In most cases,
clustermgtd
handles all node maintenance actions. To check ifclustermgtd
replaced or terminated a node, check theclustermgtd
log. -
If
clustermgtd
replaced or terminated the node, there should be a message indicating the reason for the action. If the reason is scheduler related (for example, the node wasDOWN
), check in theslurmctld
log for more details. If the reason is EC2 related, use tools to check status or logs for that instance. For example, you can check if the instance had scheduled events or failed EC2 health status checks. -
If
clustermgtd
didn't terminate the node, check ifcomputemgtd
terminated the node or if EC2 terminated the instance to reclaim a Spot Instance.
-
-
Node failures
-
In most cases, jobs are automatically requeued if a node failed. Look in the
slurmctld
log to see why a job or a node failed and analyze the situation from there.
-
Failure when replacing or terminating instances, failure when powering down nodes
-
In general,
clustermgtd
handles all expected instance termination actions. Look in theclustermgtd
log to see why it failed to replace or terminate a node. -
For dynamic nodes failing scaledown_idletime, look in the
SuspendProgram
log to see if a program byslurmctld
with the specific node as argument. NoteSuspendProgram
doesn't actually perform any specific action. Rather, it only logs when it’s called. All instance termination andNodeAddr
reset are completed byclustermgtd
. Slurm puts nodes intoIDLE
afterSuspendTimeout
.
Other issues
-
Amazon ParallelCluster doesn't make job allocation or scaling decisions. It simple tries to launch, terminate, and maintain resources according to Slurm’s instructions.
For issues regarding job allocations, node allocation and scaling decision, look at the
slurmctld
log for errors.