Difference between revisions of "Slurm"

From KENET Training
Jump to: navigation, search
 
Line 16: Line 16:
 
   $ scancel :  to cancel your own job that has been submitted.
 
   $ scancel :  to cancel your own job that has been submitted.
 
</code>
 
</code>
Usage will be illustrated in the subsequent pages.
+
Together with these commands, a job submission script can be provided to slurm to set a jobs
 +
parameters. Practical usage examples will be illustrated in the subsequent pages.
  
 
Next:
 
Next:

Latest revision as of 18:40, 12 April 2025

Introduction

Slurm [1] is a workload manager for clusters, offering both batch and interactive job scheduling. It works over a text based interface on the linux terminal.

Slurm will provide you with the following to help you make use of the cluster;

  1. What resources are available on the cluster.
  2. Queuing and allocation of jobs based on specified resources.
  3. Job monitoring and status reporting.

These commands include:

 $ sinfo : to view the cluster, resources and partition
 $ squeue : view submitted job.
 $ sbatch : submit a batch job.
 $ sacct : for admins
 $ scancel :  to cancel your own job that has been submitted.

Together with these commands, a job submission script can be provided to slurm to set a jobs parameters. Practical usage examples will be illustrated in the subsequent pages.

Next: Basic_Usage:_CPU_Based_Resources_With_Slurm

Up: HPC_Usage