Update 2.1 Batch job submission authored by Odunlami Marc's avatar Odunlami Marc
...@@ -105,14 +105,14 @@ Slurm is connected to a database recording job accounting data. The `sacct` and ...@@ -105,14 +105,14 @@ Slurm is connected to a database recording job accounting data. The `sacct` and
Show information on the *job_id* job: Show information on the *job_id* job:
``` ```
# Short format # Short format
sacct -j job_id sacct -X -j job_id
# Long format # Long format
sacct -l -j job_id sacct -X -l -j job_id
``` ```
Display jobs starting and ending between January 1, 2019 and January 1, 2020 on the bigmem01 node: Display jobs starting and ending between January 1, 2019 and January 1, 2020 on the bigmem01 node:
``` ```
sacct --nodelist=bigmem01 --starttime=2019-01-01 --endtime=2020-01-01 sacct -X --nodelist=bigmem01 --starttime=2019-01-01 --endtime=2020-01-01
``` ```
Display the number of hours computed by *username* between June 1, 2019 and January 1, 2020 on each account: Display the number of hours computed by *username* between June 1, 2019 and January 1, 2020 on each account:
... ...
......