Exclude certain nodes when submitting jobs with qs

2019-04-26 21:21发布

问题:

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

回答1:

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



标签: torque qsub