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:

  1. Official Documentation: Refer to schedmd’s comprehensive SLURM guide: https://slurm.schedmd.com/. For Maxwell-specific examples, see:
  2. Maxwell Useful Commands
  3. Running Batch Jobs

  4. Key Methods:

  5. 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"
  6. srun: Run interactive/command-line jobs directly (e.g., srun -N 1 -n 4 hostname).
  7. salloc: Reserve resources without immediate execution (e.g., salloc --nodes=2).

  8. FAQ Reference: Check DESY Maxwell Job FAQ for common issues.


Sources: - DESY Maxwell Jobs Documentation - SchedMD SLURM Docs