Creating Groups of Nodes in TORQUE
Despite being a simple first in/first out (FIFO) scheduler, pbs_sched
can use node properties to emulate host groups. This can be useful if you have different types of nodes that provide different types of resources.
The nodes available in TORQUE are controlled by the file /var/spool/torque/server_priv/nodes
. The most basic configuration simply lists the nodes and the number of processor cores per node:
node01.cluster np=12 node02.cluster np=12 node03.cluster np=12 node04.cluster np=12
Let’s say that there’s a job that needs access to fast scratch space and an SSD has been added to node03 and node04. We want the user to be able to say, “I only want my job to run on the nodes with an SSD.” To do this we’ll add a property to the nodes named ssd
.
node01.cluster np=12 node02.cluster np=12 node03.cluster np=12 ssd node04.cluster np=12 ssd
To request these nodes, we will add “ssd” to the properties list when running qsub:
qsub -l nodes=2:ppn=12:ssd submission_script.sh
The above example requests two nodes with 12 processors per node (ppn) and the property we added, ssd
. This job will only run when the two nodes tagged with that property are available.
Categories
- Getting Support (5)
- Hardware (35)
- Areca Raid Arrays (3)
- InfiniBand (10)
- LSI Raid Arrays (9)
- NVIDIA Graphics Cards (1)
- Racks (1)
- Troubleshooting (8)
- Software (11)
- ACT Utilities (5)
- HPC apps & benchmarks (1)
- Linux (3)
- Schedulers (3)
- SGE / Grid Engine (1)
- TORQUE (1)
- Tech Tips (17)
Request a Consultation from our team of HPC and AI Experts
Would you like to speak to one of our HPC or AI experts? We are here to help you. Submit your details, and we'll be in touch shortly.