Skip to content

Commit

Permalink
Merge pull request #630 from aturner-epcc/aturner-epcc/estimated-star…
Browse files Browse the repository at this point in the history
…t-629

Adds note on estimatung start time. Closes #629
  • Loading branch information
clairbarrass authored Sep 25, 2024
2 parents bbb1676 + 654f8ab commit 5fd58e6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/user-guide/scheduler.md
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,27 @@ sbatch: Job 1039497 to start at 2022-02-01T23:20:51 using 256 processors on node
in partition standard
```

## Estimated start time for queued jobs

You can use the `squeue` command to show the current estimated start time for a job.
Please note that it is just an estimate, the actual start time may differ as the scheduler
status when the start time was estimated may be different due to subsequent changes to
the scheduler state. To return the estimated start time for a job you spacify the
job ID with the `--jobs=<jobid>` and `--Format=StartTime` options.

For example, to show the estimated start time for job `123456`, you would use:

```
squeue --jobs=123456 --Format=StartTime
```

The output from this command would look like:

```
START_TIME
2024-09-25T13:07:00
```

## Example job submission scripts

A subset of example job submission scripts are included in full below.
Expand Down

0 comments on commit 5fd58e6

Please sign in to comment.