Did You Know ... SLURM Edition
timestamp1578952680001
Tips
Announcement
Welcome Guide
- Did you know there’s a gui to view SLURM jobs? Inside a VNC or “ssh -XY …” session, type
sview -a
from the command line (check out the menu selection as well):
Did you know you can view the maximum resources of each node with:
sinfo -e -o "%20N %10c %10m %25f %10G"
Did you know you can view the maximum memory used for running jobs with (see “/bin/sacct -e” for format options):
/bin/sacct --format="JobID,CPUTime,MaxRSS" -j JOBID
better yet, try
sstat --format="jobid,maxrss,avecpu" -j JOBID
(“sstat -e” for format options)?Did you know you can email yourself job status changes?
#SBATCH [email protected]
#SBATCH --mail-type=FAIL,BEGIN,END,SUSPEND
Here are a few more tips and you can contact me directly with any questions.