Working on a remote HPC system
Overview
Teaching: 25 min
Exercises: 10 minQuestions
How do I log on to a remote HPC system?
Objectives
Connect to a remote HPC system.
Understand the general HPC system architecture.
Logging in
To log into the cluster (Cirrus at EPCC, The University of Edinburgh) use:
[user@laptop ~]$ ssh yourUsername@login.cirrus.ac.uk
Remember to replace yourUsername
with the username supplied by the instructors. You will be asked for
your password. But watch out, the characters you type are not displayed on the screen.
You are logging in using a program known as the secure shell or ssh
.
This establishes a temporary encrypted connection between your laptop and login.cirrus.ac.uk
.
The word before the @
symbol, e.g. yourUsername
here, is the user account name that Lola has access
permissions for on the cluster.
Where do I get this
ssh
from ?On Linux and/or macOS, the
ssh
command line utility is almost always pre-installed. Open a terminal and typessh --help
to check if that is the case.At the time of writing, the easiest way to get access to ssh is to install the git bash program. See setup for more details.
Where are we?
Very often, many users are tempted to think of a high-performance computing installation as one
giant, magical machine. Sometimes, people will assume that the computer they’ve logged onto is the
entire computing cluster. So what’s really happening? What computer have we logged on to? The name
of the current computer we are logged onto can be checked with the hostname
command. (You may also
notice that the current hostname is also part of our prompt!)
[yourUsername@cirrus-login0 ~]$ hostname
cirrus-login0
Nodes
Individual computers that compose a cluster are typically called nodes (although you will also hear people call them servers, computers and machines). On a cluster, there are different types of nodes for different types of tasks. The node where you are right now is called the head node, login node or submit node. A login node serves as an access point to the cluster. As a gateway, it is well suited for uploading and downloading files, setting up software, and running quick tests. It should never be used for doing actual work.
The real work on a cluster gets done by the worker (or compute) nodes. Worker nodes come in many shapes and sizes, but generally are dedicated to long or hard tasks that require a lot of computational resources.
All interaction with the worker nodes is handled by a specialized piece of software called a scheduler (the scheduler used in this lesson is called ). We’ll learn more about how to use the scheduler to submit jobs next, but for now, it can also tell us more information about the worker nodes.
For example, we can view all of the worker nodes with the pbsnodes -a
command.
[yourUsername@cirrus-login0 ~]$ pbsnodes -a
r1i0n32
Mom = r1i0n32.ib0.icexa.epcc.ed.ac.uk
ntype = PBS
state = offline
pcpus = 72
resources_available.arch = linux
resources_available.host = r1i0n32
resources_available.mem = 263773892kb
resources_available.ncpus = 36
resources_available.vnode = r1i0n32
resources_assigned.accelerator_memory = 0kb
resources_assigned.mem = 0kb
resources_assigned.naccelerators = 0
resources_assigned.ncpus = 0
resources_assigned.netwins = 0
resources_assigned.vmem = 0kb
resv_enable = True
sharing = default_shared
license = l
...
There are also specialized machines used for managing disk storage, user authentication, and other infrastructure-related tasks. Although we do not typically logon to or interact with these machines directly, they enable a number of key features like ensuring our user account and files are available throughout the HPC system.
Shared file systems
This is an important point to remember: files saved on one node (computer) are often available everywhere on the cluster!
What’s in a node?
All of a HPC system’s nodes have the same components as your own laptop or desktop: CPUs (sometimes also called processors or cores), memory (or RAM), and disk space. CPUs are a computer’s tool for actually running programs and calculations. Information about a current task is stored in the computer’s memory. Disk refers to all storage that can be accessed like a file system. This is generally storage that can hold data permanently, i.e. data is still there even if the computer has been restarted.
Explore Your Computer
Try to find out the number of CPUs and amount of memory available on your personal computer.
Explore The Head Node
Now we’ll compare the size of your computer with the size of the head node: To see the number of processors, run:
[yourUsername@cirrus-login0 ~]$ nproc --all
How about memory? Try running:
[yourUsername@cirrus-login0 ~]$ free -h
Getting more information
You can get more detailed information on both the processors and memory by using different commands.
For more information on processors use
lscpu
[yourUsername@cirrus-login0 ~]$ lscpu
For more information on memory you can look in the
/proc/meminfo
file:[yourUsername@cirrus-login0 ~]$ cat /proc/meminfo
Explore a Worker Node
Finally, let’s look at the resources available on the worker nodes where your jobs will actually run. Try running this command to see the name, CPUs and memory available on the worker nodes:
[yourUsername@cirrus-login0 ~]$ pbsnodes r1i0n32
Compare Your Computer, the Head Node and the Worker Node
Compare your laptop’s number of processors and memory with the numbers you see on the cluster head node and worker node. Discuss the differences with your neighbor. What implications do you think the differences might have on running your research work on the different systems and nodes?
Units and Language
A computer’s memory and disk are measured in units called Bytes (one Byte is 8 bits). As today’s files and memory have grown to be large given historic standards, volumes are noted using the SI prefixes. So 1000 Bytes is a Kilobyte (kB), 1000 Kilobytes is a Megabyte, 1000 Megabytes is a Gigabyte etc.
History and common language have however mixed this notation with a different meaning. When people say “Kilobyte”, they mean 1024 Bytes instead. In that spirit, a Megabyte are 1024 Kilobytes. To address this ambiguity, the International System of Quantities standardizes the binary prefixes (with base of 1024) by the prefixes kibi, mibi, gibi, etc. For more details, see here
Differences Between Nodes
Many HPC clusters have a variety of nodes optimized for particular workloads. Some nodes may have larger amount of memory, or specialized resources such as Graphical Processing Units (GPUs).
With all of this in mind, we will now cover how to talk to the cluster’s scheduler, and use it to start running our scripts and programs!
Key Points
HPC systems typically provides login nodes and a set of worker nodes.
The resources found on independent (worker) nodes can vary in volume and type (amount of RAM, processor architecture, availability of network mounted file systems, etc.).
Files saved on one node are available on all nodes.