Scheduler Fundamentals
Overview
Teaching: 45 min
Exercises: 30 minQuestions
What is a scheduler and why does a cluster need one?
How do I launch a program to run on a compute node in the cluster?
How do I capture the output of a program that is run on a node in the cluster?
Objectives
Submit a simple script to the cluster.
Monitor the execution of jobs using command line tools.
Inspect the output and error files of your jobs.
Find the right place to put large datasets on the cluster.
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.
The scheduler used in this lesson is SGE. Although SGE 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 a shell script – essentially a text file containing a list of UNIX commands to be executed in a sequential manner. Our shell script will have three parts:
- On the very first line, add
#!/bin/bash -l
. The#!
(pronounced “hash-bang” or “shebang”) tells the computer what program is meant to process the contents of this file. In this case, we are telling it that the commands that follow are written for the command-line shell (what we’ve been doing everything in so far). - Anywhere below the first line, we’ll add an
echo
command with a friendly greeting. When run, the shell script will print whatever comes afterecho
in the terminal.echo -n
will print everything that follows, without ending the line by printing the new-line character.
- On the last line, we’ll invoke the
hostname
command, which will print the name of the machine the script is run on.
[yourUsername@login12 ~]$ nano example-job.sh
#!/bin/bash -l
echo -n "This script is running on "
hostname
Creating Our Test Job
Run the script. Does it execute on the cluster or just our login node?
Solution
[yourUsername@login12 ~]$ bash example-job.sh
This script is running on login12.myriad.ucl.ac.uk
This script ran on the login node, but we want to take advantage of
the compute nodes: we need the scheduler to queue up example-job.sh
to run on a compute node.
To submit this task to the scheduler, we use the
qsub
command.
This creates a job which will run the script when dispatched to
a compute node which the queuing system has identified as being
available to perform the work.
[yourUsername@login12 ~]$ qsub example-job.sh
Your job 36855 ("example-job.sh") has been submitted
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
qstat -u yourUsername
.
[yourUsername@login12 ~]$ qstat -u yourUsername
job-ID prior name user state submit/start at queue
-------------------------------------------------------------------------------
3979883 3.50000 example-jo yourUser r 06/25/2020 11:36:30 Arya@node-b00
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 (w
or
waiting
) or have an error (E
).
Where’s the Output?
On the login node, this script printed output to the terminal – but now, when
qstat
shows the job has finished, nothing was printed to the terminal.Cluster job output is typically redirected to a file in the directory you launched it from. Use
ls
to find andcat
to read the file.
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
#!/usr/bin/env bash
). Schedulers like SGE also
have a special comment used to denote special scheduler-specific options.
Though these comments differ from scheduler to scheduler,
SGE’s special comment is #$
. Anything
following the #$
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 -N
option can be used to change the
name of a job. Add an option to the script:
[yourUsername@login12 ~]$ cat example-job.sh
#!/bin/bash -l
#$ -N hello-world
echo -n "This script is running on "
hostname
Submit the job and monitor its status:
[yourUsername@login12 ~]$ qsub example-job.sh
[yourUsername@login12 ~]$ qstat -u yourUsername
job-ID prior name user state submit/start at slots
------------------------------------------------------------------------
38191 0.00000 hello-worl yourUser qw 06/25/2020 13:25:26 1
Fantastic, we’ve successfully changed the name of our job!
Resource Requests
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:
-
-l h_rt=hours:minutes:seconds
— How much real-world time (walltime) will your job take to run? -
-pe mpi <ncpus>
— How many CPUs does your job need? If you only need one CPU you can leave this out. -
-l mem=<bytes>
— How much memory per process does your job need? Must be an integer followed by M, G, or T to specify Mega, Giga or Terabytes. -
-wd /home/<your_UCL_id>/Scratch/<your_run_directory>
— Set the working directory to somewhere in your scratch space.
Note that just requesting these resources does not make your job run faster, nor does it necessarily mean that you will consume all of these resources. It only means that these are made available to you. Your job may end up using less memory, or less time, or fewer nodes than you have requested, and it will still run.
It’s best if your requests accurately reflect your job’s requirements. 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
Modify our
hostname
script so that it runs for a minute, then submit a job for it on the cluster.Solution
[yourUsername@login12 ~]$ cat example-job.sh
#!/bin/bash -l #$ -l h_rt=00:01:00 # timeout in HH:MM echo -n "This script is running on " sleep 20 # time in seconds hostname
[yourUsername@login12 ~]$ qsub example-job.sh
Why are the SGE runtime and
sleep
time not identical?
Resource requests are typically binding. If you exceed them, your job will be killed. Let’s use wall time as an example. We will request 1 minute of wall time, and attempt to run a job for two minutes.
[yourUsername@login12 ~]$ cat example-job.sh
#!/bin/bash -l
#$ -N long_job
#$ -l h_rt= 00:01 # timeout in HH:MM
echo "This script is running on ... "
sleep 240 # time in seconds
hostname
Submit the job and wait for it to finish. Once it is has finished, check the log file.
[yourUsername@login12 ~]$ qsub example-job.sh
[yourUsername@login12 ~]$ qstat -u yourUsername
[yourUsername@login12 ~]$ cat long_job.o*
This script is running on:
node-d00a-007.myriad.ucl.ac.uk
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, SGE 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 qdel
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!).
[yourUsername@login12 ~]$ qsub example-job.sh
[yourUsername@login12 ~]$ qstat -u yourUsername
Your job 38759 ("example-job.sh") has been submitted
job-ID prior name user state submit/start at slots
------------------------------------------------------------------------
38759 0.00000 example-jo yourUser qw 06/25/2020 14:27:46 1
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.
[yourUsername@login12 ~]$ qdel 38759
# It might take a minute for the job to disappear from the queue...
[yourUsername@login12 ~]$ qstat -u yourUsername
# ...(no output from qstat when there are no jobs to display)...
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 us). Note that you can only delete your own jobs.Try submitting multiple jobs and then cancelling them all with ` -u yourUsername`.
Solution
First, submit a trio of jobs:
[yourUsername@login12 ~]$ qsub example-job.sh [yourUsername@login12 ~]$ qsub example-job.sh [yourUsername@login12 ~]$ qsub example-job.sh
Then, cancel them all:
[yourUsername@login12 ~]$ qdel -u yourUsername
Other Types of Jobs
Up to this point, we’ve focused on running jobs in batch mode. SGE 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 qrsh
.
For an interactive session, you reserve some compute nodes via the scheduler and then are logged in live, just like on the login nodes. These can be used for live visualisation, software debugging, or to work up a script to run your program without having to submit each attempt separately to the queue and wait for it to complete.
[yourUsername@login12 ~]$ qrsh -l mem=512M,h_rt=2:00:00
All qsub
options are supported like regular job
submission with the difference that with qrsh
they
must be given at the command line, and not with any job script. Once a node is
allocated to you, you should be presented with a bash prompt. Note that the
prompt will likely change to reflect your new location, in this case the worker
node we are logged on. You can also verify this with hostname
.
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.
A job is just a shell script.
Request slightly more resources than you will need.