Slurm jobs are allocations of resources assigned to a user for a specified amount of time. The sets of (possibly parallel) tasks within a job are called job steps in Slurm terminology.
Step-by-step guide
- You can see your jobs in the queue issuing the command
squeue -a -l -u $USER
- Check the details of a specific jobid
<SLURM_JOB_ID>
withscontrol show <SLURM_JOB_ID>
- If you want to delete one of your submitted jobs, the command you need is
scancel <SLURM_JOB_ID>
.
Please check the section Running Jobs of the User Portal and the Slurm Quick Start User Guide for a brief introduction of the Slurm scheduler.