Skip to content
Snippets Groups Projects
submitting_an_interactive_job.md 1.52 KiB
title = "Submitting an Interactive Job"
description =  "How to run an interactive job on HCC resources."

{{% notice info %}} The /home directories are read-only on the worker nodes. You will need to compile or run your processing in /work. {{% /notice %}}

Submitting an interactive job is done with the command srun.

{{< highlight bash >}} $ srun --pty $SHELL {{< /highlight >}}

or to allocate 4 cores per node:

{{< highlight bash >}} $ srun --nodes=1 --ntasks-per-node=4 --mem-per-cpu=1024 --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 job.  You can provide options to the interactive job just as you would a regular SLURM job.

Priority for short jobs

To run short jobs for testing and development work, a job can specify a different quality of service (QoS). The short QoS increases a jobs priority so it will run as soon as possible.

SLURM Specification
--qos=short

{{% panel theme="warning" header="Limits per user for 'short' QoS" %}}

  • 6 hour job run time
  • 2 jobs of 16 CPUs or fewer
  • No more than 256 CPUs in use for short jobs from all users {{% /panel %}}

{{% panel theme="info" header="Using the short QoS" %}} {{< highlight bash >}} srun --qos=short --nodes=1 --ntasks-per-node=1 --mem-per-cpu=1024 --pty $SHELL {{< /highlight >}} {{% /panel %}}