Stoomboot

From Atlas Wiki
Revision as of 14:35, 8 December 2008 by Verkerke@nikhef.nl (talk | contribs)
Jump to navigation Jump to search

What is stoomboot

Stoomboot is a batch farm for local use at NIKHEF. It is in principle open to all NIKHEF users, but a login account does not give automatic access to stoomboot. Contact helpdesk@nikhef.nl to gain access

Hardware

Stoomboot consists of 16 nodes (stbc-01 through stbc-16) that are each a equipped with dual quad-core Intel Xeon E5335 2.0 Ghz processors and 16 Gb of memory. The total number of cores is 128.

Software & disk access

All stoomboot nodes run Scientific Linux 4.7. All NFS mountable disks at NIKHEF are visible (/project/* and /data/*). Stoomboot does not run AFS so no AFS directories including /afs/cern.ch are not visible. This may indirectly impact you as certain experimental software installations attempt to access files on /afs/cern.ch. As stoomboot is intended as a local batch farm there are no plans to install AFS.

How to use stoomboot

Submitting batch jobs

Stoomboot is a batch-only facilities and jobs can be submitted through the PBS qsub command

unix> qsub test.sh
9714.allier.nikhef.nl

The argument passed to qsub is a script that will be executed in your home directory. The returned string is the job identifier and can be used to look up the status of the job, or to manipulate it later. Jobs can be submitted from any linux desktop at nikhef as well as login.nikhef.nl. If you cannot submit jobs from your local desktop, contact helpdesk@nikhef.nl to have the batch client software installed.

The output of the job appears in files named <jobname>.o<number>, e.g. test.sh.o9714 in example of previous page. The following default settings apply when you submit a batch job

  • Job runs in home directory ($HOME)
  • Job starts with clean shell (any environment variable from the shell from which you submit are not transferred to batch job) E.g. if you need ATLAS software setup, it should be done in the submitted script
  • Job output (stdout) is sent to a file in directory in which job was submitted. Job stderr output is sent to separate file E.g. for example of previous slide file test.sh.o9714 contains stdout and file test.sh.e9714 contains stderr. If there is no stdout or stderr, an empty file is created
  • A mail is sent to you the output files cannot be created

Here is a listed of frequently desired changes in default behavior and their corresponding option in qsub

  • Merge stdout and stderr in a single file. Add option -j oe to qsub command (single file *.o* is written)
  • Choose batch queue. Right now there are two queues: test (30 min) and qlong (48h) Add option -q <queuename> to qsub command
  • Choose different output file for stdout. Add option -o <filename> to qsub command
  • Pass all environment variables of submitting shell to batch job (with exception of $PATH). Add option -V to qsub command

A full list of options can be obtained from man qsub

Examining the status of your jobs

The qstat command shows the stats of all your jobs. Status code 'C' indicates completed, 'R' indicates running and 'Q' indicates queued.

unix> qstat
Job id              Name             User            Time Use S Queue
------------------- ---------------- --------------- -------- - -----
9714.allier         test.sh          verkerke        00:00:00 C test

The qstat command only shows your own jobs, not those of other users. Only completed jobs that completed less than 10 minutes ago are listsed with status 'C'. Output of jobs that completed longer ago is kept, but they are simply no longer listed in the status overview.

To see activity of other users on the system you can use the lower-level maui command showq which will show jobs of all users. The showq command works without arguments on login, on any other host add --host=allier to run it successfully.

The general level of activity on stoomboot is graphically monitored in this location http://www.nikhef.nl/grid/stats/stbc/

LSF job submission emulator

The interface of the PBS batch system is notably different from the LSF batch system that is run at e.g. CERN and SLAC. One of the convenient features of LSF bsub is that the user does not need to write a script for every batch job, but that a command line that is passed to bsub is executed. An emulator is available for the LSF bsub command that submits a job that executes the bsub command line in the present working directory and the complete present envirnment. For example one can do

  bsub ls -l 

which will submit a batch job that executes ls -l in the working directory from which the bsub command was executed. This script expressly allows the user to setup e.g. the complete ATLAS software environment in a shell on the local desktop and then substitute local desktop running of an ATLAS software job with a batch-run job by prefixing bsub to the executed command line. The scope of the LSF bsub emulator is limited to its ability to execute the command line in batch in an identical environment. It does not emulate the various command line flags of LSF bsub. You can find the bsub emulator for now in ~verkerke/bin/bsub


Suggestions for debugging and trouble shooting

If you want to debug a problem that occurs on a stoomboot batch job, or you want to make a short trial run for a larger series of batch jobs there are two ways to gain interactive login access to stoomboot.

  • You can directly login to node stbc-16 (this only only) to test and/or debug your problem. You should keep CPU consumption and testing time to a minimum as regularly scheduled batch jobs run on this machine too.
  • You can request an 'interactive' batch job through qsub -q qlong -X -I. In this mode you can consume as much CPU resources as the queue that the interactive job was submitted to allows. The 'look and feel' of interactive bacth jobs is nearly identical to that of ssh. The main exception is that when no free job slot is available the qsub command will hang until one becomes available.

Scratch disk usages and NFS disk access

When running on stoomboot please be sure to locate all local 'scratch' files to the directory pointed to by the environment variable $TMPDIR and not /tmp. The latter is very small (a few Gb) and when filled up will give all kinds of problems for you and other users. The disk pointed to by $TMPDIR is typically 200 Gb. Also here be sure to clean up when your job ends to avoid filling up these disk as well.

Scheduling policies and CPU quota

This section is sensitive to changes as scheduling policies and quota allocation are still evolving. At the time of writing (December 2008) each group (atlas,bphys etc...) is allowed to use at most 96 run slots (i.e. 75% of the available capacity, this is the hard limit). When the system is 'busy', as determined by the maui scheduler a lower soft limit of 64 run slots is enforced (50% of the capacity). Each individual user is entitled to use all run slots of his group. To see what policy prevents your queued jobs from running use the checkjob <jobid> command.


Questions, communication and announcements on stoomboot

To ask questions and to receive announcements on stoomboot operations, subscribe to the stoomboot users mailing list (stbc-users@nikhef.nl). To subscribe yourself to this list go to https://mailman.nikhef.nl/cgi-bin/listinfo/stbc-users.