Slurm memory-based scheduling - Amazon ParallelCluster
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Slurm memory-based scheduling

Starting with version 3.2.0, Amazon ParallelCluster supports Slurm memory-based scheduling with the SlurmSettings / EnableMemoryBasedScheduling cluster configuration parameter.

Note

Starting with Amazon ParallelCluster version 3.7.0, EnableMemoryBasedScheduling can be enabled if you configure multiple instance types in Instances.

For Amazon ParallelCluster versions 3.2.0 to 3.6.x, EnableMemoryBasedScheduling can't be enabled if you configure multiple instance types in Instances.

Warning

When you specify multiple instances types in a Slurm queue compute resource with EnableMemoryBasedScheduling enabled, the RealMemory value is the minimum amount of memory made available to all instance types. This might lead to significant amounts of unused memory if you specify instance types with very different memory capacities.

With EnableMemoryBasedScheduling: true, the Slurm scheduler tracks the amount of memory that each job requires on each node. Then, the Slurm scheduler uses this information to schedule multiple jobs on the same compute node. The total amount of memory that jobs require on a node can't be larger than the available node memory. The scheduler prevents a job from using more memory than what was requested when the job was submitted.

With EnableMemoryBasedScheduling: false, jobs might compete for memory on a shared node and cause job failures and out-of-memory events.

Warning

Slurm uses a power of 2 notation for its labels, such as MB or GB. Read these labels as MiB and GiB, respectively.

Slurm configuration and memory-based scheduling

With EnableMemoryBasedScheduling: true, Slurm sets the following Slurm configuration parameters:

  • SelectTypeParameters=CR_CPU_Memory in the slurm.conf. This option configures node memory to be a consumable resource in Slurm.

  • ConstrainRAMSpace=yes in the Slurm cgroup.conf. With this option, a job's access to memory is limited to the amount of memory that the job requested when submitted.

Note

Several other Slurm configuration parameters can impact the behavior of the Slurm scheduler and resource manager when these two options are set. For more information, see the Slurm Documentation.

Slurm scheduler and memory-based scheduling

EnableMemoryBasedScheduling: false (default)

By default, EnableMemoryBasedScheduling is set to false. When false, Slurm doesn't include memory as a resource in its scheduling algorithm and doesn't track the memory that jobs use. Users can specify the --mem MEM_PER_NODE option to set the minimum amount of memory per node that a job requires. This forces the scheduler to choose nodes with a RealMemory value of at least MEM_PER_NODE when scheduling the job.

For example, suppose that a user submits two jobs with --mem=5GB. If requested resources such as CPUs or GPUs are available, the jobs can run at the same time on a node with 8 GiB of memory. The two jobs aren't scheduled on compute nodes with less than 5 GiB of RealMemory.

Warning

When memory-based scheduling is disabled, Slurm doesn't track the amount of memory that jobs use. Jobs that run on the same node might compete for memory resources and cause the other job to fail.

When memory-based scheduling is disabled, we recommend that users don't specify the --mem-per-cpu or --mem-per-gpu options. These options might cause behavior that differs from what's described in the Slurm Documentation.

EnableMemoryBasedScheduling: true

When EnableMemoryBasedScheduling is set to true, Slurm tracks the memory usage of each job and prevents jobs from using more memory than requested with the --mem submission options.

Using the previous example, a user submits two jobs with --mem=5GB. The jobs can't run at the same time on a node with 8 GiB of memory. This is because the total amount of memory that's required is greater than the memory that's available on the node.

With memory-based scheduling enabled, --mem-per-cpu and --mem-per-gpu behave consistently with what's described in the Slurm documentation. For example, a job is submitted with --ntasks-per-node=2 -c 1 --mem-per-cpu=2GB. In this case, Slurm assigns the job a total of 4 GiB for each node.

Warning

When memory-based scheduling is enabled, we recommend that users include a --mem specification when submitting a job. With the default Slurm configuration that's included with Amazon ParallelCluster, if no memory option is included (--mem, --mem-per-cpu, or --mem-per-gpu), Slurm assigns entire memory of the allocated nodes to the job, even if it requests only a portion of the other resources, such as CPUs or GPUs. This effectively prevents node sharing until the job is finished because no memory is available to other jobs. This happens because Slurm sets the memory per node for the job to DefMemPerNode when no memory specifications are provided at job submission time. The default value for this parameter is 0 and specifies unlimited access to a node’s memory.

If multiple types of compute resources with different amounts of memory are available in the same queue, a job submitted without memory options might be assigned different amounts of memory on different nodes. This depends on which nodes the scheduler makes available to the job. Users can define a custom value for options, such as DefMemPerNode or DefMemPerCPU, at the cluster or partition level in the Slurm configuration files to prevent this behavior.

SlurmRealMemory andAmazon ParallelClusterSchedulableMemory

With the Slurm configuration that's shipped with Amazon ParallelCluster, Slurm interprets RealMemory to be the amount of memory per node that's available to jobs. Starting with version 3.2.0, by default, Amazon ParallelCluster sets RealMemory to 95 percent of the memory listed in Amazon EC2 Instance Types and returned by the Amazon EC2 API DescribeInstanceTypes.

When memory-based scheduling is disabled, the Slurm scheduler uses RealMemory to filter nodes when users submit a job with --mem specified.

When memory-based scheduling is enabled, the Slurm scheduler interprets RealMemory to be the maximum amount of memory that's available to jobs that are running on the compute node.

The default setting might not be optimal for all instance types:

  • This setting might be higher than the amount of memory that nodes can actually access. This can happen when compute nodes are small instance types.

  • This setting might be lower than the amount of memory that nodes can actually access. This can happen when compute nodes are large instance types and can lead to a significant amount of unused memory.

You can use SlurmQueues / ComputeResources / SchedulableMemory to fine-tune the value of RealMemory configured by Amazon ParallelCluster for compute nodes. To override the default, define a custom value for SchedulableMemory specifically for your cluster configuration.

To check a compute node's actual available memory, run the /opt/slurm/sbin/slurmd -C command on the node. This command returns the hardware configuration of the node, including the RealMemory value. For more information, see slurmd -C.

Make sure that the compute node's operating system processes have sufficient memory. To do this, limit the memory available to jobs by setting the SchedulableMemory value to lower than the RealMemory value that the slurmd -C command returned.