Cluster: Difference between revisions
No edit summary |
No edit summary |
||
Line 34: | Line 34: | ||
<pre>ssh username@icecube.iihe.ac.be | <pre>ssh username@icecube.iihe.ac.be | ||
</pre> | </pre> | ||
TIP : icecube.iihe.ac.be points automatically to available UI's | TIP : ''icecube.iihe.ac.be'' points automatically to available UI's (ui01, ui02, ...)<br> | ||
<br> | <br> | ||
Line 48: | Line 48: | ||
username@uiXX:~$ | username@uiXX:~$ | ||
</pre> | </pre> | ||
Your default current working directory is your home folder | Your default current working directory is your home folder.<br> | ||
<br> | <br> | ||
Line 74: | Line 74: | ||
==== /software/icecube<br> ==== | ==== /software/icecube<br> ==== | ||
Icecube specific tools :<br> | Icecube specific tools :<br> | ||
===== /software/icecube/i3_ports<br> ===== | ===== /software/icecube/i3_ports<br> ===== | ||
Line 87: | Line 87: | ||
=== /ice3<br> === | === /ice3<br> === | ||
== Batch System == | == Batch System == | ||
Line 138: | Line 136: | ||
=== Job submission === | === Job submission === | ||
To submit a job, you just have to use the | To submit a job, you just have to use the '''qsub''' command : | ||
<pre>qsub myjob.sh | <pre>qsub myjob.sh | ||
</pre> | </pre> | ||
OPTIONS | ''OPTIONS'' | ||
-q queueName : choose the queue (default: any) | -q queueName : choose the queue (default: any) | ||
Line 152: | Line 150: | ||
-l : resources options | -l : resources options | ||
=== Job management === | |||
To see all jobs (running / queued), you can use the '''qstat''' command or go to the [http://ganglia.iihe.ac.be/addons/job_monarch/?c=iihe JobMonArch] page | |||
<pre>qstat | |||
</pre> | |||
''OPTIONS'' | |||
-u username : list only jobs submitted by username | |||
-n : show nodes where jobs are running | |||
-q : show the job repartition on queues | |||
== Useful links == | == Useful links == | ||
Line 157: | Line 172: | ||
[http://ganglia.iihe.ac.be Ganglia Monitoring] : Servers status | [http://ganglia.iihe.ac.be Ganglia Monitoring] : Servers status | ||
[http://ganglia.iihe.ac.be/addons/job_monarch/?c=iihe JobMonArch] : | [http://ganglia.iihe.ac.be/addons/job_monarch/?c=iihe JobMonArch] : Jobs overview |
Revision as of 12:08, 13 February 2014
IIHE local cluster
Overview
The cluster is composed by 4 machine types :
- User Interfaces (UI)
This is the cluster front-end, to use the cluster, you need to log into those machines
Servers : ui01, ui02
- Computing Element (CE)
This server is the core of the batch system : it run submitted jobs on worker nodes
Servers : ce
- Worker Nodes (WN)
This is the power of the cluster : they run jobs and send the status back to the CE
Servers : slave*
- Storage Elements
This is the memory of the cluster : they contains data, software, ...
Servers : datang (/data, /software), lxserv (/user), x4500 (/ice3)
How to connect
To connect to the cluster, you must use your IIHE credentials (same as for wifi)
ssh username@icecube.iihe.ac.be
TIP : icecube.iihe.ac.be points automatically to available UI's (ui01, ui02, ...)
After a successful login, you'll see this message :
========================================== Welcome on the IIHE ULB-VUB cluster Cluster status http://ganglia.iihe.ac.be IT Help support-iihe@ulb.ac.be ========================================== username@uiXX:~$
Your default current working directory is your home folder.
Directory Structure
Here is a description of most useful directories
/user/username
Your home folder
/data
Main data repository
/software
The custom software area
/software/src
/software/icecube
Icecube specific tools :
/software/icecube/i3_ports
/software/icecube/offline-software
/software/icecube/icerec
/software/icecube/isimulation
/ice3
Batch System
Queues
The cluster is decomposed in queues
any | lowmem | standard | highmem | gpu | |
---|---|---|---|---|---|
Description | |||||
CPU's | |||||
Walltime default/limit | |||||
Memory default/limit |
Job submission
To submit a job, you just have to use the qsub command :
qsub myjob.sh
OPTIONS
-q queueName : choose the queue (default: any)
-N jobName : name of the job
-I : pass in interactive mode
-m : mail options
-l : resources options
Job management
To see all jobs (running / queued), you can use the qstat command or go to the JobMonArch page
qstat
OPTIONS
-u username : list only jobs submitted by username
-n : show nodes where jobs are running
-q : show the job repartition on queues
Useful links
Ganglia Monitoring : Servers status
JobMonArch : Jobs overview