Goal: Introduction to Slurm and how to start interactive sessions, submit jobs and monitor.
...
ARCC: Slurm: Wiki Pages
Info |
---|
A quick read can be found under: Slurm: Getting Started-Jobs and Nodes ARCC also hosts a number of more detailed and specific wiki pages: |
...
...
Info |
---|
|
Interactive Session: salloc
...
Info |
---|
|
...
Submit Jobs: sbatch
: Example
...
Info |
---|
|
...
More squeue
Information
Info |
---|
The main Slurm squeue page. |
Code Block |
---|
# Lots more information
[]$ squeue --help
[]$ man squeue
# Display more columns:
# For example how much time is left of your requested wall time: TimeLeft
squeue -u <username> --Format="Account,UserName,JobID,SubmitTime,StartTime,TimeLeft"
[]$ squeue -u <username> --Format="Account,UserName,JobID,SubmitTime,StartTime,TimeLeft"
ACCOUNT USER JOBID SUBMIT_TIME START_TIME TIME_LEFT
<project-name> <username> 1795458 2024-08-14T10:31:07 2024-08-14T10:31:09 6-04:42:51
<project-name> <username> 1795453 2024-08-14T10:31:06 2024-08-14T10:31:07 6-04:42:49
<project-name> <username> 1795454 2024-08-14T10:31:06 2024-08-14T10:31:07 6-04:42:49
... |
...
Submission from your Current Working Directory
...