Created
March 22, 2017 04:12
-
-
Save nicksan2c/8f40bfd41b8769dfcd89a96d1e593ea8 to your computer and use it in GitHub Desktop.
Slurm Tips and Tricks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| show all non-responsive nodes | |
| % sinfo -d | |
| show all drained nodes | |
| % sinfo -d | grep drain | |
| show all dead nodes | |
| % sinfo -d | grep dead | |
| show job size, availability, time limit and node status by partition | |
| % sinfo -o "%.10P %.15s %.10a %.10l %.15F" | |
| show queue status | |
| % squeue | |
| show queue statue by a particular user | |
| % squeue -u <username> | |
| show breakdown of jobs by user | |
| % squeue -h | awk '{print $4}' | sort | uniq -c | sort -rn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment