Skip to content

Commit

Permalink
sstat, scontrol: add page (#4689)
Browse files Browse the repository at this point in the history
  • Loading branch information
npalladium committed Oct 14, 2020
1 parent 58af31d commit fbfe2c2
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pages/linux/scontrol.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# scontrol

> View information about and modify jobs.
> More information: <https://slurm.schedmd.com/scontrol.html>.
- Show information for job:

`scontrol show job {{job_id}}`

- Suspend a comma-separated list of running jobs:

`scontrol suspend {{job_id}}`

- Resume a comma-separated list of suspended jobs:

`scontrol resume {{job_id}}`

- Hold a comma-separated list of queued jobs (Use `release` command to permit the jobs to be scheduled):

`scontrol hold {{job_id}}`

- Release a comma-separated list of suspended job:

`scontrol release {{job_id}}`
16 changes: 16 additions & 0 deletions pages/linux/sstat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# sstat

> View information about running jobs.
> More information: <https://slurm.schedmd.com/sstat.html>.
- Display status information of a comma-separated list of jobs:

`sstat --jobs={{job_id}}`

- Display job ID, average CPU and average virtual memory size of a comma-separated list of jobs, with pipes as column delimiters:

`sstat --parsable --jobs={{job_id}} --format={{JobID}},{{AveCPU}},{{AveVMSize}}`

- Display list of fields available:

`sstat --helpformat`

0 comments on commit fbfe2c2

Please sign in to comment.