This is an old revision of the document!
Table of Contents
ÚFAL Grid Engine (LRC)
LRC (Linguistic Research Cluster) is a name of ÚFAL's computational grid/cluster, which has (as of 2017/09) about 1600 CPU cores (115 servers + 2 submission heads), with a total 10 TiB of RAM. It uses (Sun/Oracle/Son of) Grid Engine software (SGE) for job scheduling etc. You can submit many computing tasks (jobs) at once, they will be placed in a queue and once a machine (slot) with the required capabilities (e.g. RAM, number of cores) is available, your job will be executed (scheduled) on this machine. This way we can maximize the usefulness of the computing resources and divide it among users in a fair way.
If you need GPU processing, see a special page about our GPU cluster called DLL (which is actually a subsystem of LRC with an independent queue gpu.q
).
TODO: describe alternatives, e.g.: ms-guests tiny cluster, MetaCentrum / Cesnet cluster (all MFF students can use it), Amazon EC2, Microsoft Azure (some colleagues may have sometime free vouchers).
List of Machines
Last update: 2017/09. All machines have Ubuntu 14.04.
Some machines are at Malá Strana (ground floor, new server room built from Lindat budget), some are at Troja (5 km north-east).
If you need to quickly distinguish which machine is located where, you can use your knowledge of Trojan war-related heroes, qhost -q
, or the tables below.
Troja (troja-all.q)
Name | CPU type | GHz | cores | RAM(GB) | note |
---|---|---|---|---|---|
achilles[1-8] | Intel | 3.2 | 32 | 128 | |
hector[1-8] | Intel | 1.3 | 32 | 128 | |
helena[1-8] | Intel | 2.6 | 32 | 128 | |
paris[1-8] | Intel | 2.4 | 32 | 128 |
MS = Malá Strana (ms-all.q)
Name | CPU type | GHz | cores | RAM(GB) | note |
---|---|---|---|---|---|
andromeda[1-13] | AMD 2xCore4 Opteron | 2.8 | 8 | 32 | |
hydra[1-4] | AMD | 2.6 | 16 | 128 | |
fireball[1-10] | Intel ??2xCore4 Xeon | 3.0 | 4 | 32 | |
hyperion[1-9] | Intel 2xCore2 Xeon | 3.0 | 4 | 32 | |
lucifer[1-10] | Intel ??2xCore4 Xeon | 2.4 | 16 | 128 | |
orion[1-6] | Intel 2xCore4 Xeon | 2.3 | 8 | 32 | |
orion[7-10] | Intel | 2.0 | 4 | 32 | |
tauri[1-10] | Intel ??2xCore4 Xeon | 3.0 | 4 | 32 | |
cosmos | Intel 4xCore2 Xeon | 2.9 | 8 | 256 | |
belzebub | Intel 8xCore4 Xeon | 2.9 | 32 | 256 | |
iridium | Intel ??2xCore4 Xeon | 1.9 | 16 | 512 | also in gpu.q |
twister[1,2] | Intel 2xCore4 Xeon | 2.4 | 8 | 48 | also in gpu.q |
Outside LRC cluster (but located as MS)
Name | CPU type | GHz | cores | RAM(GB) | note |
---|---|---|---|---|---|
lrc[1,2] | Intel | 2.3 | 4 | 45 | no computing here, just submit jobs |
pandora[1-10] | 2xCore2 Intel Xeon | 2.6 | 16 | special cluster&queue ms-guests.q |
|
sol[1-5] | Intel | 2.6 | 4 | 16 | you can ssh here and compute |
sol[6-8] | Intel | 2.0 | 8 | 16 | you can ssh here and compute |
The two lrc machines are so called heads of the cluster. No computation is allowed here, i.e. no CPU-intensive, disk-intensive nor RAM-intensive computation (very simple scripts are OK). You should just ssh to lrc1
or lrc2
and submit your jobs as described bellow.
Alternatively, you can ssh to one of the sol machines and submit jobs from here. It is allowed to compute here, which is useful e.g. when you have a script which submits your jobs, but it also collects statistics from the jobs outputs (and possibly submits new jobs conditioned on the statistics). However, the sol machines are relatively slow and may be occupied by your colleagues, so for bigger (longer) tasks, always prefer submission as separate jobs.
The pandora machines are in a special cluster (not accessible from lrc) and queue ms-guests.q available for our colleagues from KSVI and for students of Data intensive computing (see the 2016 handouts if you missed the course).
Installation
Add the following line into your '~/.bash_profile'.
source /net/projects/SGE/user/sge_profile
This detects if you are on one of the cluster machines (including lrc and sol) and sets env variables accordingly. It also prints a status message.
Usually, this is the first line of your '~/.bash_profile' and the second-and-last line is
[ -f ~/.bashrc ] && source ~/.bashrc
Basic usage
First, you need to ssh to the cluster head (lrc1 or lrc2) or to one of the sol machines. The full address is lrc1.ufal.hide.ms.mff.cuni.cz
, but you can use just ssh lrc1
(“hide” means it is accessible only from the ÚFAL network, not from outside; if working from home/Eduroam, you need to login/VPN to the ÚFAL network first).
ssh lrc1 echo 'hostname; pwd; echo The second parameter is $2' > script.sh # prepare a shell script describing your task qsub -cwd -j y script.sh Hello World # This submits your job to the default queue, which is currently ''ms-all.q''. # Usually, there is a free slot, so the job will be scheduled within few seconds. # We have used two handy qsub parameters: # -cwd ... the script is executed in the current directory (the default is your home) # -j y ... stdout and stderr outputs are merged and redirected to a file (''script.sh.o$JOB_ID'') # We have also provided two parameters for our script "Hello" and "World". # The qsub prints something like # Your job 121144 ("script.sh") has been submitted qstat # This way we inspect all our jobs (both waiting in queue and scheduled, i.e. running). qstat -u '*' | less # This shows jobs of all users. qstat -j 121144 # This shows detailed info about the job with this number (if it is still running). less script.sh.o* # We can inspect the job's output (in our case stored in script.sh.o121144). # Hint: if the job is still running, press F in 'less' to simulate 'tail -f'.
The output of our job should look like:
LRC:ubuntu 14.04: 8.1.7a Son of Grid Engine variables set... lucifer5 /home/popel/tmp The second parameter is World ======= EPILOG: Tue Sep 26 19:49:05 CEST 2017 == Limits: == Usage: cpu=00:00:00, mem=0.00000 GB s, io=0.00000 GB, vmem=N/A, maxvmem=N/A == Duration: 00:00:02 (2 s)
Our admins configured the SGE to print some extra info on stderr: the first line and then the epilog.
The mem=XY GB s
means gigabytes of RAM used times the duration of the job in seconds, so don't be afraid XY is usually a very high number (unlike in this toy example).
The maxvmem
means the peak virtual memory consumption (which is useful for setting h_vmem
, see below).
qdel 121144 # This way you can delete ("kill") a job with a given number, or comma-or-space separated list of job numbers. qdel \* # This way you can delete all your jobs. Don't be afraid - you cannot delete others jobs.
Rules
The purpose of these rules is to prevent your jobs to damage the work of your colleagues and to divide the resources among users in a fair way.
- Read about our network first (so you know that e.g. reading big data from your home in 200 parallel jobs is not a good idea, but regular cleanup of your data is a good idea). Ask your colleagues (possibly via devel) if you are not sure, esp. if you plan to submit jobs with unusual/extreme disk/mem/CPU requirements.
- While your jobs are running (or queued), check your jobs (esp. previously untested setups) and your email (esp. devel) regularly. If you really need to leave e.g. for two-week vacation offline, consult it first with it@ufal (whether they can kill your jobs if needed).
- You can ssh to any cluster machine, which can be useful e.g. to diagnose what's happening there (using
htop
etc.). - However, never execute any computing manually on a cluster machine where you are sshed (i.e. not via
qsub
orqrsh
). If you break this rule, your task will take CPU and memory, but the SGE will not know, so it may schedule other users' jobs on the same machine and their jobs may fail or run slowly. The sol machines are an exception from this rule. - For interactive work, you can use
qrsh
, but please try to end the job (exit with Ctrl+D) once finished with your work, especially if you ask for a lot of memory or CPUs (see below). One semi-permanent qrsh job (with non-extreme CPU/mem requirements) per user is acceptable. - Specify the memory and CPU requirements (if higher than the defaults) and don't exceed them.
- If your job needs more than one CPU (on a single machine) for most of the time, reserve the given number of CPU cores (and SGE slots) with
qsub -pe smp <number-of-CPU-cores>
As you can see in List of Machines, the maximum is 32 cores. If your job needs e.g. up to 110% CPU most of the time and just occasionally 200%, it is OK to reserve just one core (so you don't waste). TODO: when using
-pe smp -l mf=8G,amf=8G,h_vmem=12G
, which memory limits are per machine and which are per core? - If you are sure your job needs less than 1GB RAM, then you can skip this. Otherwise, if you need e.g. 8 GiB, you must always use
qsub
(orqrsh
) with-l mem_free=8G
. You should specify alsoact_mem_free
with the same value andh_vmem
with possibly a slightly bigger value. See memory for details. TL;DR:qsub -l mem_free=8G,act_mem_free=8G,h_vmem=12G
- Be kind to your colleagues. If you are going to submit jobs that effectively occupy more than one fifth of our cluster for more than several hours, check if the cluster is free (with
qstat -g c
orqstat -u \*
) and/or ask your colleagues if they don't plan to use the cluster intensively in the near future. Note that if you allocate one slot (CPU core) on a machine, but (almost) all its RAM, you have effectively occupied the whole machine and all its cores. If you are submitting more than 100 jobs, consider using setting them a low priority (e.g.-p -1024
, see below) or use qunhold. Don't submit more than ca 2000 jobs at once (this can overload the SGE).
Memory
- There are three commonly used options for specifying memory requirements:
mem_free, act_mem_free
andh_vmem
. Each has a different purpose. mem_free=1G
means 1024×1024×1024 bytes, i.e. one GiB (gibibyte).mem_free=1g
means 1000×1000×1000 bytes, i.e. one gigabyte. Similarly for the other options and other prefixes (k, K, m, M).- mem_free (or mf) specifies a consumable resource tracked by SGE and it affects job scheduling. Each machine has an initial value assigned (slightly lower than the real total physical RAM capacity). When you specify
qsub -l mem_free=4G
, SGE finds a machine with mem_free >= 4GB, and subtracts 4GB from it. This limit is not enforced, so if a job exceeds this limit, it is not automatically killed and thus the SGE value of mem_free may not represent the real free memory. The default value is 1G. By not using this option and eating more than 1 GiB, you are breaking the rules. - act_mem_free (or amf) is a ÚFAL-specific option, which specifies the real amount of free memory (at the time of scheduling). You can specify it when submitting a job and it will be scheduled to a machine with at least this amount of memory free. In an ideal world, where no jobs are exceeding their
mem_free
requirements, we would not need this options. However, in real world it is recommended to use this option with the same value asmem_free
to protect your job from failing with out-of-memory error (because of naughty jobs of other users). - h_vmem is equivalent to setting
ulimit -v
, i.e. it is a hard limit on the size of virtual memory (see RLIMIT_AS inman setrlimit
). If your job exceeds this limit, memory allocation fails (i.e., malloc or mmap will return NULL), and your job will probably crash on SIGSEGV. TODO: according toman queue_conf
, the job is killed with SIGKILL, not with SIGSEGV. Note thath_vmem
specifies the maximal size of allocated_memory, not used_memory, in other words it is the VIRT column intop
, not the RES column. SGE does not use this parameter in any other way. Notably, job scheduling is not affected by this parameter and therefore there is no guarantee that there will be this amount of memory on the chosen machine. The problem is that some programs (e.g. Java with the default setting) allocate much more (virtual) memory than they actually use in the end. If we want to be ultra conservative, we should seth_vmem
to the same value asmem_free
. If we want to be only moderately conservative, we should specify something like h_vmem=1.5*mem_free, because some jobs will not use the whole mem_free requested, but still our job will be killed if it allocated much more than declared. The default effectively means that your job has no limits. - It is recommended to profile your task first, so you can estimate reasonable memory requirements before submitting many jobs with the same task (varying in parameters which do not affect memory consumption). So for the first time, declare mem_free with much more memory than expected and ssh to a given machine and check
htop
(sum all processes of your job) or (if the job is done quickly) check the epilog. When running other jobs of this type, setmem_free
(andact_mem_free
andh_vmem
) so you are not wasting resources, but still have some reserve. - s_vmem is similar to
h_vmem
, but instead of SIGSEGV/SIGKILL, the job is sent a SIGXCPU signal which can be caught by the job and exit gracefully before it is killed. So if you need it, sets_vmem
to a lower value thanh_vmem
and implement SIGXCPU handling and cleanup.
Advanced usage
qsub -q troja-all.q
This way your job is submitted to the Troja queue. The default is ms-all.q
. You can also use e.g.
-q '(troja*|ms*)
' to submit on any machine in those two queues (but don't use -q '*
' as this includes also gpu.q),
-q '*@hector[14]
' to submit on hecor1 or hector4,
-q '[tm]*@!(hector*|iridium)
' to submit on any troja/ms machine except hectors and iridium.
However, usually you should specify just the queue (troja-all.q vs. ms-all.q), not a particular machine, and instead use -l
to specify the needed resources in a general way.
qsub -l …
See man complex
(run it on lrc or sol machines) for a list of possible resources you may require (in addition to mem_free
etc. discussed above).
qsub -p -100
Define a priority of your job as a number between -1024 and 0. Only SGE admins may use a number higher than 0. The default is 0, i.e. the highest possible priority. SGE uses the priority to decide when to start which pending job in the queue (it computes a real number called prior
, which is reported in qstat
, which grows as the job is waiting in the queue). Note that once a job is started, you cannot “unschedule” it, so from that moment on, it is irrelevant what was its priority.
qsub -o LOG.stdout -e LOG.stderr
redirect std{out,err} to separate files with given names, instead of the defaults $JOB_NAME.o$JOB_ID
and $JOB_NAME.e$JOB_ID
.
qsub -@ optionfile
Instead of specifying all the qsub
options on the command line, you can store them in a file (you can use # comments in the file). See also In-script options.
qsub -a 12312359
Execute your job no sooner than at the given time (in [YY]MMDDhhmm
format). An alternative to sleep 3600 && qsub … &
.
qsub -b y
Treat script.sh
(or whatever is the name of the command you execute) as a binary, i.e. don't search for in-script options within the file, don't transfer it to the qmaster and then to the execution node. This makes the execution a bit faster and it may prevent some rare but hard-to-detect errors caused SGE interpreting the script. The script must be available on the execution node via NFS, Lustre (which is our case), etc. With -b y
(shortcut for -b yes
), script.sh
can be a script or a binary. With -b n
(which is the default for qsub
), script.sh
must be a script (text file).
qsub -M popel@ufal.mff.cuni.cz,rosa@ufal.mff.cuni.cz -m beas
Specify the emails where you want to be notified when the job has been b started, e ended, a aborted or rescheduled, s suspended.
qsub -hold_jid 121144,121145
The current job is not executed before all the specified jobs are completed.
qsub -now y
Start the job immediately or not at all, i.e. don't put it as pending to the queue. This is the default for qrsh
, but you can change it with -now n
(which is the default for qsub
).
qsub -N my-name
By default the name of a job (which you can see e.g. in qstat
) is the name of the script.sh
. This way you can override it.
qsub -S /bin/bash
The hashbang (!#/bin/bash
) in your script.sh
is ignored, but you can change the interpreter with -S
. I think /bin/bash
is now (2017/09) the default (but it used to be csh
).
qsub -v PATH
Export a given environment variable from the current shell to the job.
qsub -V
Export all environment variables. (This is not so needed now, when bash is the default interpreter and it seems your ~/.bashrc
is always sourced.)
qsub -soft -l … -hard -l … -q …
By default, all the resource requirements (specified with -l
) and queue requirements (specified with -q
) are hard, i.e. your job won't be scheduled unless they can be fulfilled. You can use -soft
to mark all following requirements as nice-to-have. And with -hard
you can switch back to hard requirements.
qsub -sync y
This causes qsub to wait for the job to complete before exiting (with the same exit code as the job). Useful in scripts.
qalter
You can change some properties of already submitted jobs, which are still waiting in the queue (pending).
man qsub qstat qalter qhold queue_conf sge_types complex
Find out all the gory details which are missing here. You'll have to do it one day anyway:-).
qsub wrappers
If you often run (ad-hoc) bash commands via qsub
, check ~bojar/tools/shell/qsubmit
or ~stepanek/bin/qcmd
, which allow you to enter the command on command line without creating any temp script files. The wrappers have also other features (some qsub options have changed default values). qcmd
is older, but unlike qsubmit
it has POD documentation, correct time computation and you don't need to quote the command.
qunhold
~stepanek/bin/qunhold
tries to keep the number of running SGE jobs under a given threshold: all jobs over the threshold are held. If the number of running jobs goes below the threshold (default: 100), 10 jobs (by default) are unheld. Beware: if your jobs submit new jobs, you can get far over the threshold!
sshcwd
This is useful not only when sshing to sol machines. Add the following lines to your ~/.bashrc
.
function sshcwd () { # save the current history so that it is available # immediately on the remote machine history -a; # setup the working directory by setting WD ssh -X -Y -C -t $@ "WD='$PWD' /bin/bash --login -i"; } # use WD to setup the working directory if [ -n "$WD" ]; then echo "Autochanging dir to $WD" >&2 cd $WD; fi alias sol1="sshcwd sol1.ufal.hide.ms.mff.cuni.cz"
In-script options
If you don't use -b y
, you can write the qsub
options into script.sh
instead of providing them on the command line. So your script.sh
can be e.g.
#$ -l mem_free=10G,act_mem_free=10G,h_vmem=10G #$ -pe smp 8 #$ -cwd -j y #$ -N name-of-my-job ./what/to/run
and you execute it now simply with qsub script.sh
.
Array jobs
If you have a set of tasks (of the same type) and want to run them on multiple machines, use qsub -t
.
-t 1-n
start array job with n jobs numbered 1 … n- environmental variable
SGE_TASK_ID
- output and error files
$JOB_NAME.[eo]$JOB_ID.$TASK_ID
-t m-n[:s]
start array job with jobs m, m + s, …, n- environmental variables
SGE_TASK_FIRST, SGE_TASK_LAST, SGE_TASK_STEPSIZE
-tc j
run at most j jobs simultaneously-hold_jid_ad comma_separated_job_list
array jobs that must finish before this job starts; task i of the current job depends only on task i of the specified jobs
Job monitoring
qstat [-u user]
– print a list of running/waiting jobs of a given userqhost
– print available/total resources/SGE/REPORTER/LRC-UFAL/bin/lrc_users_real_mem_usage -u user -w
– current memory usage of a given user/SGE/REPORTER/LRC-UFAL/bin/lrc_users_limits_requested -w
– required resources of all users/SGE/REPORTER/LRC-UFAL/bin/lrc_nodes_meminfo
– memory usage of all nodes- mem_total:
- mem_free: total memory minus reserved memory (using
qsub -l mem_free
) for each node - act_mem_free: really free memory
- mem_used: really used memory
/SGE/REPORTER/LRC-UFAL/bin/lrc_state_overview
– overall summary (with per-user stats for users with running jobs)cat /SGE/REPORTER/LRC-UFAL/stats/userlist.weight
– all users sorted according to their activity (number of submitted jobs × their average duration), updated each night- Munin: graph of cluster usage by day and user and Munin monitoring of Apophis disk server (both accessible only from ÚFAL network)
Other
- You can use environment variables
$JOB_ID
,$JOB_NAME
. - One job can submit other jobs (but be careful with recursive:-)). A job submitted to the CPU cluster may submit GPU jobs (to the
qpu.q
queue). - It is important, that the files that are sourced during a login such as .bash_profile, .profile, .bashrc, .login etc. don't produce any output when a non-interactive login is done. If they do, changes are that your job will run, but that the batch system is unable to deliver to you the standard output and error files. In that case the status of your job will be 'E' after the job is finished. Here is an example how you can test in a .bash_profile or .bashrc if this is an interactive login:
unset INTERACTIVE /usr/bin/tty > /dev/null 2>&1 /usr/bin/test $? = 0 && INTERACTIVE=yes ... if [ "$INTERACTIVE" ]; then ... commands only for truly interactive sessions ... fi
TODO: Is this restriction still true (for our cluster)? E.g. .bash_profile with /net/projects/SGE/user/sge_profile prints info messages on stderr and it is OK.