• 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):

Screen Shot 2020-01-13 at 9.58.26 AM.png

  • 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.