Slurm Workload manager is an open source, fault-tolerant, and highly scalable cluster management and job scheduling system for large and small Linux clusters. As a cluster workload manager, Slurm has three key functions.
Bioinformatics Center uses unmodified version of Slurm on sampo.uef.fi computing cluster. This guarantees that the most of the tutorials and guides found from the Internet are applicable as-is. The most obvious starting place to search for usage information is documentation section of the Slurm own website Slurm Workload Manager.
% Creates a 10x10 Magic square M = magic(10); M
#!/bin/bash module load matlab/R2018b # load modules matlab -nodisplay < matlab.m # Execute the script
User can submit the job to the compute queue with the sbatch command.
sbatch submit.sbatch
sbatch command submits the job to the job queue and executes the bash script. Output of the job can be found from the local output file.
less slurm-jobid.out
User can monitor the progress of the job with the squeue command. JOBID is provided by the sbatch commmand when the job is submitted.
squeue -j JOBID
Seff command will give the report of the completed job on how much resources it consumed. The reported information are CPU wall time, job runtime and memory usage.
seff jobid