Project

General

Profile

Slurm » History » Version 36

« Previous - Version 36/136 (diff) - Next » - Current version
Kerstin Paech, 10/24/2013 02:12 PM


How to run jobs on the euclides nodes

Use slurm to submit jobs to the euclides nodes (node1-8), ssh login access to those nodes will be restricted in the near future.

Please read through this entire wikipage so everyone can make efficient use of this cluster

alexandria

Please do not use alexandria as a compute node - it's hardware is different from the nodes. It hosts our file server and other services that are important to us.

You should use alexandria to
- transfer files
- compile your code
- submit jobs to the nodes

If you need to debug, please start an interactive job to one of the nodes using slurm. For instructions see below.

euclides nodes

Job submission to the euclides nodes is handled by the slurm jobmanager (see http://slurm.schedmd.com and https://computing.llnl.gov/linux/slurm/).
Important: In order to run jobs, you need to be added to the slurm accounting system - please contact Kerstin

All slurm commands listed below have very helpful man pages (e.g. man slurm, man squeue, ...).

If you are already familiar with another jobmanager the following information may be helpful to you http://slurm.schedmd.com/rosetta.pdf‎.

Scheduling of Jobs

At this point there are two queues, called partitions in slurm:
  • normal which is the default partition your jobs will be sent to if you do not specify it otherwise. At this point there is a time limit of
    two days. Jobs at this point can only run on 1 node.
  • debug which is meant for debugging, you can only run one job at a time, other jobs submitted will remain in the queue. Time limit is
    12 hours.

We have also set up a scheduler that goes beyond the first come first serve - some jobs will be favoured over others depending
on how much you or your group have been using euclides in the past 2 weeks, how long the job has been queued and how much
resources it will consume.

This is serves as a starting point, we may have to adjust parameters once the slurm jobmanager is used. Job scheduling is a complex
issue and we still need to build expertise and gain experience what are the user needs in our groups. Please feel free to speak out if
there is something that can be improved without creating an unfair disadvantage for other users.

You can run interactive jobs on both partitions.

Running an interactive job with slurm

To run an interactive job with slurm in the default partition, use

srun -u --pty bash

If you want to use tcsh use

srun -u --pty tcsh

If you want to use a larger memory per job do

srun -u --mem-per-cpu=8000 --pty tcsh

In case you want to open x11 applications, use the --x11=first option, e.g.

srun --x11=first -u   --pty  bash

In case the 'normal' partition is overcrowded, to use the 'debug' partition, use:

srun --account cosmo_debug -p debug -u --pty bash # if you are part of the Cosmology group
srun --account euclid_debug -p debug -u --pty bash  # if you are part of the EuclidDM group
As soon as a slot is open, slurm will log you in to an interactive session on one of the nodes.

Running a simple once core batch job with slurm using the default partition

  • To see what queues are available to you (called partitions in slurm), run:
    sinfo
    
  • To run slurm, create a myjob.slurm containing the following information:
    #!/bin/bash
    #SBATCH --output=slurm.out
    #SBATCH --error=slurm.err
    #SBATCH --mail-user <put your email address here>
    #SBATCH --mail-type=BEGIN
    #SBATCH -p normal
    
    /bin/hostname
    
  • To submit a batch job use:
    sbatch myjob.slurm
    
  • To see the status of you job, use
    squeue
    
  • To kill a job use:
    scancel <jobid>
    
    the <jobid> you can get from using squeue.
  • For some more information on your job use
    scontrol show job <jobid>
    
    the <jobid> you can get from using squeue.

Running a simple once core batch job with slurm using the debug partition

Change the partition to debug and add the appropriate account depending if you're part of
the euclid or cosmology group.

#!/bin/bash
#SBATCH --output=slurm.out
#SBATCH --error=slurm.err
#SBATCH --mail-user <put your email address here>
#SBATCH --mail-type=BEGIN
#SBATCH -p debug
#SBATCH -account [cosmo_debug/euclid_debug]

/bin/hostname

Accessing a node where a job is running or starting additional processes on a node

You can attach an srun command to an already existing job (batch or interactive). This
means you can start an interactive session on a node where a job of yours is running
or start an additional process.

First determine the jobid of the desired job using squeue, then use

srun  --jobid <jobid> [options] <executable> 

Or more concrete
srun  --jobid <jobid> -u --pty  bash # to start an interactive session
srun  --jobid <jobid> ps -eaFAl  # to start get detailed process information 

The processes will only run on cores that have been allocated to you. This works
for batch as well as interactive jobs.
Important: If the original job that was submitted is finished, any process
attached in this fashion will be killed.

Batch script for running a multi-core job

mpi is installed on alexandria.

To run a 4 core job for an executable compiled with mpi you can use

#!/bin/bash
#SBATCH --output=slurm.out
#SBATCH --error=slurm.err
#SBATCH --mail-user <put your email address here>
#SBATCH --mail-type=BEGIN
#SBATCH -n 4

mpirun <programname>


and it will automatically start on the number of nodes specified.

To ensure that the job is being executed on only one node, add

#SBATCH -n 4

to the job script.

If you would like to run a program that itself starts processes, you can use the
environment variable $SLURM_NPROCS that is automatically defined for slurm
jobs to explicitly pass the number of cores the program can run on.

To check if your job is acutally running on the specified number of cores, you can check
the PSR column of

ps -eaFAl
# or ps -eaFAl | egrep "<yourusername>|UID" if you just want to see your jobs

environment for jobs

By default, slurm does not initialize the environment (using .bashrc, .profile, .tcshrc, ...)

To use your usual system environment, add the following line in the submission script:

#SBATCH --get-user-env

Software specific setup

Python environment

You can use the python 2.7.3 installed on the euclides cluster by using

source /data2/users/ccsoft/etc/setup_all

Notes For Euclid users

For those submitting jobs to euclides* nodes through Cosmo DM pipeline here are some things which need to be specified for customized job submissions,
since a different interface to slurm is used.

  • To use larger memory per block , specify max_memory = 6000 (for 6G) and so on. inside block definition or in the submit file (in
    case you want to use it for all blocks)
  • If you want to run on multiple cores/cores then use
    nodes='<number of nodes>:ppn=<number of cores> inside the block definition of a particular block or in the submit file in case you want
    to use it for all blocks.
  • If you want to use a larger wall time then specify wall_mod=<wall time in minutes> inside the module definition
Redmine Appliance - Powered by TurnKey Linux