1612066 : Test_Ticket_Do_not_own¶
Created: 2026-06-25T10:42:51Z - current status: new¶
Summary:¶
The user wants guidance on using SLURM (Simple Linux Utility for Resource Management) on the Maxwell cluster at DESY.
Anonymized Issue:¶
A general inquiry about how to utilize SLURM commands (sbatch, srun, salloc) for job submission/allocation on the Maxwell HPC system.
Solution / Next Steps:¶
- Official Documentation: Refer to schedmd’s comprehensive SLURM guide: https://slurm.schedmd.com/. For Maxwell-specific examples, see:
- Maxwell Useful Commands
-
Key Methods:
sbatch: Submit a script with resource directives (e.g.,#SBATCH --nodes=1). Example:bash #!/bin/bash #SBATCH --job-name=test #SBATCH --time=01:00:00 echo "Hello from Maxwell"srun: Run interactive/command-line jobs directly (e.g.,srun -N 1 -n 4 hostname).-
salloc: Reserve resources without immediate execution (e.g.,salloc --nodes=2). -
FAQ Reference: Check DESY Maxwell Job FAQ for common issues.
Sources: - DESY Maxwell Jobs Documentation - SchedMD SLURM Docs