Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exclude certain nodes when submitting jobs with qsub / torque?

Tags:

qsub

torque

When submitting batch jobs with qsub, is there a way to exclude a certain node (by hostname)?

Something like

# this is just a pseudo command:
qsub myscript.sh --exclude computer01
like image 744
jdm Avatar asked Feb 13 '12 15:02

jdm


1 Answers

Depending on how many nodes you would like available, there are a couple of options.

You could specify by name a specific node that is acceptable:

qsub -l nodes=n006+n007

To exclude, say, one node out of a group, I would ask the administrator to assign a dummy property to all nodes but the one you want excluded. Then you can request for that property.

Sources:

http://www.clusterresources.com/torquedocs21/2.1jobsubmission.shtml#nodeExamples http://www.clusterresources.com/torquedocs21/2.1jobsubmission.shtml#resources

like image 90
gzS Avatar answered Oct 05 '22 12:10

gzS