Skip to content
Snippets Groups Projects
Commit 139af6a2 authored by John Thiltges's avatar John Thiltges
Browse files

Merge branch 'sruntime' into 'master'

On the interactive job page, add notes on default job runtime, and how to increase it

See merge request !194
parents f42d234a 24035e09
No related branches found
No related tags found
1 merge request!194On the interactive job page, add notes on default job runtime, and how to increase it
......@@ -15,19 +15,20 @@ Submitting an interactive job is done with the command `srun`.
$ srun --pty $SHELL
{{< /highlight >}}
or to allocate 4 cores per node:
or to allocate 4 cores per node for 3 hours:
{{< highlight bash >}}
$ srun --nodes=1 --ntasks-per-node=4 --mem-per-cpu=1024 --pty $SHELL
$ srun --nodes=1 --ntasks-per-node=4 --mem-per-cpu=1024 --time=3:00:00 --pty $SHELL
{{< /highlight >}}
Submitting an interactive job is useful if you require extra resources
to run some processing by hand. It is also very useful to debug your
processing.
And interactive job is scheduled onto a worker node just like a regular
An interactive job is scheduled onto a worker node just like a regular
job. You can provide options to the interactive job just as you would a
regular SLURM job.
regular SLURM job. The default job runtime is 1 hour, and can be
increased by including the `--time` argument.
### Priority for short jobs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment