Scheduling jobs

Overview

Teaching: 45 min
Exercises: 30 min
Questions
  • What is a scheduler and why are they used?

  • How do I launch a program to run on any one node in the cluster?

  • How do I capture the output of a program that is run on a node in the cluster?

Objectives
  • Run a simple Hello World style program on the cluster.

  • Submit a simple Hello World style script to the cluster.

  • Use the batch system command line tools to monitor the execution of your job.

  • Inspect the output and error files of your jobs.

Job scheduler

An HPC system might have thousands of nodes and thousands of users. How do we decide who gets what and when? How do we ensure that a task is run with the resources it needs? This job is handled by a special piece of software called the scheduler. On an HPC system, the scheduler manages which jobs run where and when.

The following illustration compares these tasks of a job scheduler to a waiter in a restaurant. If you can relate to an instance where you had to wait for a while in a queue to get in to a popular restaurant, then you may now understand why sometimes your job do not start instantly as in your laptop.

/hpc-intro-plato/Compare%20a%20job%20scheduler%20to%20a%20waiter%20in%20a%20restaurant

The scheduler used in this lesson is SLURM. Although SLURM is not used everywhere, running jobs is quite similar regardless of what software is being used. The exact syntax might change, but the concepts remain the same.

Running a batch job

The most basic use of the scheduler is to run a command non-interactively. Any command (or series of commands) that you want to run on the cluster is called a job, and the process of using a scheduler to run the job is called batch job submission.

In this case, the job we want to run is just a shell script. Let’s create a demo shell script to run as a test. The cluster offers a number of terminal-based text editors. Use whichever you prefer. Unsure? nano is a pretty good, basic choice.

[nsid@platolgn01 ~]$ nano example-job.sh
[nsid@platolgn01 ~]$ chmod +x example-job.sh
[nsid@platolgn01 ~]$ cat example-job.sh
#!/bin/bash

echo -n "This script is running on "
hostname
sleep 20
echo "Job done!"

Creating our test job

Run the script. Does it execute on the cluster or just our login node?

Solution

[nsid@platolgn01 ~]$ ./example-job.sh
This script is running on platolgn01
Job done!

This job runs on the login node.

If you completed the previous challenge successfully, you probably realise that there is a distinction between running the job through the scheduler and just “running it”. To submit this job to the scheduler, we use the sbatch command.

[nsid@platolgn01 ~]$ sbatch  example-job.sh
Submitted batch job 736234

And that’s all we need to do to submit a job. Our work is done – now the scheduler takes over and tries to run the job for us. While the job is waiting to run, it goes into a list of jobs called the queue. To check on our job’s status, we check the queue using the command squeue -u nsid.

[nsid@platolgn01 ~]$ squeue -u nsid
 JOBID     USER      ACCOUNT           NAME  ST  TIME_LEFT NODES CPUS       GRES MIN_MEM NODELIST (REASON) 
726557     nsid hpc_s_worksh example-job.sh   R      19:50     1    1     (null)    512M plato418 (None)

We can see all the details of our job, most importantly that it is in the R or RUNNING state. Sometimes our jobs might need to wait in a queue (PD, for pending) or have an error (E).

Once a job is finished, it will no longer be listed by squeue.

Where’s the output?

On the login node, this script printed output to the terminal – but when our job finishes, there’s nothing. Where’d it go?

Cluster job output is typically redirected to a file in the directory you launched it from. Use ls to find the file and cat to read it.

Customising a job

The job we just ran used all of the scheduler’s default options. In a real-world scenario, that’s probably not what we want. The default options represent a reasonable minimum. Chances are, we will need more cores, more memory, more time, among other special considerations. To get access to these resources we must customize our job script.

Comments in UNIX shell scripts (denoted by #) are typically ignored, but there are exceptions. For instance the special #! comment at the beginning of scripts specifies what program should be used to run it (you’ll typically see #!/bin/bash). Schedulers like SLURM also have a special comment used to denote special scheduler-specific options. Though these comments differ from scheduler to scheduler, SLURM’s special comment is #SBATCH. Anything following the #SBATCH comment is interpreted as an instruction to the scheduler.

Let’s illustrate this by example. By default, a job’s name is the name of the script, but the -J option can be used to change the name of a job. Add an option to the script:

[nsid@platolgn01 ~]$ cat example-job.sh
#!/bin/bash
#SBATCH -J new_name

echo -n "This script is running on "
hostname
sleep 20
echo "Job done!"

Submit the job (using sbatch example-job.sh) and monitor it:

[nsid@platolgn01 ~]$ squeue -u nsid
 JOBID     USER      ACCOUNT           NAME  ST  TIME_LEFT NODES CPUS       GRES MIN_MEM NODELIST (REASON) 
726970     nsid hpc_s_worksh       new_name   R      19:55     1    1     (null)    512M plato418 (None)

Fantastic, we’ve successfully changed the name of our job!

Setting up email notifications

Jobs on an HPC system might run for days or even weeks. We probably have better things to do than constantly check on the status of our job with squeue. Looking at the manual page for sbatch, can you set up our test job to send you an email when it finishes?

Hint

You can use the manual pages for SLURM utilities to find more about their capabilities. On the command line, these are accessed through the man utility: run man <program-name>. You can find the same information online by searching “man ".

[nsid@platolgn01 ~]$ man sbatch

Resource requests

But what about more important changes, such as the number of cores and memory for our jobs? One thing that is absolutely critical when working on an HPC system is specifying the resources required to run a job. This allows the scheduler to find the right time and place to schedule our job. If you do not specify requirements (such as the amount of time you need), you will likely be stuck with your site’s default resources, which is probably not what you want.

The following are several key resource requests:

Note that just requesting these resources does not make your job run faster! We’ll talk more about how to make sure that you’re using resources effectively in a later episode of this lesson.

Submitting resource requests

Submit a job that requests 1 full node and 1 minute of walltime.

Solution

[nsid@platolgn01 ~]$ cat example-job.sh
#!/bin/bash
#SBATCH --time=00:01:00
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=40
#SBATCH --mem=185G

echo -n "This script is running on "
hostname
sleep 20 # time in seconds
echo "This script has finished successfully."
[nsid@platolgn01 ~]$ sbatch  example-job.sh

Job environment variables

When SLURM runs a job, it sets a number of environment variables for the job. One of these will let us check what directory our job script was submitted from. The SLURM_SUBMIT_DIR variable is set to the directory from which our job was submitted. Using the SLURM_SUBMIT_DIR variable, modify your job so that it prints out the location from which the job was submitted.

Solution

[nsid@platolgn01 ~]$ nano example-job.sh
[nsid@platolgn01 ~]$ cat example-job.sh
#!/bin/bash
#SBATCH -t 00:00:30

echo -n "This script is running on "
hostname

echo "This job was launched in the following directory:"
echo ${SLURM_SUBMIT_DIR}

Resource requests are typically binding. If you exceed them, your job will be killed. Let’s use walltime as an example. We will request 1 minute of walltime, and attempt to run a job for two minutes.

[nsid@platolgn01 ~]$ cat example-job.sh
#!/bin/bash
#SBATCH -J long_job
#SBATCH -t 00:01:00

echo -n "This script is running on "
hostname
sleep 120 # time in seconds
echo "This script has finished successfully."

Submit the job and wait for it to finish. Once it is has finished, check the log file.

[nsid@platolgn01 ~]$ sbatch  example-job.sh
[nsid@platolgn01 ~]$ squeue -u nsid
[nsid@platolgn01 ~]$ cat slurm-38193.out
This job is running on:
plato418
slurmstepd: error: *** JOB 38193 ON plato418 CANCELLED AT 2020-10-06T16:35:48 DUE TO TIME LIMIT ***

Our job was killed for exceeding the amount of resources it requested. Although this appears harsh, this is actually a feature. Strict adherence to resource requests allows the scheduler to find the best possible place for your jobs. Even more importantly, it ensures that another user cannot use more resources than they’ve been given. If another user messes up and accidentally attempts to use all of the cores or memory on a node, SLURM will either restrain their job to the requested resources or kill the job outright. Other jobs on the node will be unaffected. This means that one user cannot mess up the experience of others, the only jobs affected by a mistake in scheduling will be their own.

Cancelling a job

Sometimes we’ll make a mistake and need to cancel a job. This can be done with the scancel command. Let’s submit a job and then cancel it using its job number (remember to change the walltime so that it runs long enough for you to cancel it before it is killed!).

[nsid@platolgn01 ~]$ sbatch  example-job.sh
[nsid@platolgn01 ~]$ squeue -u nsid
Submitted batch job 726557

 JOBID     USER      ACCOUNT           NAME  ST  TIME_LEFT NODES CPUS       GRES MIN_MEM NODELIST (REASON) 
726557     nsid hpc_s_worksh example-job.sh   R      19:50     1    1     (null)    512M plato418 (None)

Now cancel the job with its job number (printed in your terminal). A clean return of your command prompt indicates that the request to cancel the job was successful.

[nsid@platolgn01 ~]$ scancel 726557
# ... Note that it might take a minute for the job to disappear from the queue ...
[nsid@platolgn01 ~]$ squeue -u nsid
 JOBID     USER      ACCOUNT           NAME  ST  TIME_LEFT NODES CPUS       GRES MIN_MEM NODELIST (REASON)

Cancelling multiple jobs

We can also cancel all of our jobs at once using the -u option. This will delete all jobs for a specific user (in this case, yourself). Note that you can only delete your own jobs.

Try submitting multiple jobs and then cancelling them all.

Solution

First, submit a trio of jobs:

[nsid@platolgn01 ~]$ sbatch  example-job.sh
[nsid@platolgn01 ~]$ sbatch  example-job.sh
[nsid@platolgn01 ~]$ sbatch  example-job.sh

Then, cancel them all:

[nsid@platolgn01 ~]$ scancel -u nsid

Other types of jobs

Up to this point, we’ve focused on running jobs in batch mode. SLURM also provides the ability to start an interactive session.

There are very frequently tasks that need to be done interactively. Creating an entire job script might be overkill, but the amount of resources required is too much for a login node to handle. A good example of this might be building a genome index for alignment with a tool like HISAT2. Fortunately, we can run these types of tasks as a one-off with srun.

srun runs a single command on the cluster and then exits. Let’s demonstrate this by running the hostname command with srun. (We can cancel an srun job with Ctrl-c.)

[nsid@platolgn01 ~]$ srun hostname
plato418

srun accepts all of the same options as sbatch. However, instead of specifying these in a script, these options are specified on the command-line when starting a job. To submit a job that uses 2 CPUs for instance, we could use the following command:

[nsid@platolgn01 ~]$ srun -n 2 echo "This job will use 2 CPUs."
This job will use 2 CPUs.
This job will use 2 CPUs.

Typically, the resulting shell environment will be the same as that for sbatch.

Interactive jobs

Sometimes, you will need a lot of resource for interactive use. Perhaps it’s our first time running an analysis or we are attempting to debug something that went wrong with a previous job. Fortunately, SLURM makes it easy to start an interactive job with srun:

[nsid@platolgn01 ~]$ salloc

You should be presented with a bash prompt. Note that the prompt will likely change to reflect your new location, in this case the compute node we are logged on. You can also verify this with hostname.

Creating remote graphics

To see graphical output inside your jobs, you need to use X11 forwarding. To connect with this feature enabled, use the -Y option when you login with the ssh command, e.g., ssh -Y nsid@plato.usask.ca.

To demonstrate what happens when you create a graphics window on the remote node, use the xeyes command. A relatively adorable pair of eyes should pop up (press Ctrl-C to stop). If you are using a Mac, you must have installed XQuartz (and restarted your computer) for this to work.

When you are done with the interactive job, type exit to quit your session.

Key Points

  • The scheduler handles how compute resources are shared between users.

  • Everything you do should be run through the scheduler.

  • A job is just a shell script.

  • If in doubt, request more resources than you will need.