I'm working on a cluster with 8 nodes; 4 nodes have python and 4 don't. How can I ensure that my python jobs only go to the nodes with python?
- I do not have admin rights on the cluster
- PBS Pro 13.1
- RedHat 5.11
This question has been asked before, but those solutions are not working for me:
- excluding nodes from qsub command under sge
- Exclude certain nodes when submitting jobs with qsub / torque?
- How to submit a job to a specific node in PBS
- http://forum.pbsworks.com/index.php?/topic/107-how-to-exclude-a-specific-node-when-submitting-a-job/
I am able to select a single node using qsub -l host=good_node1
. However, I am not able to select a group of nodes or exclude a single node or group of nodes. A subset of the many attempts that have not worked for me:
qsub -l host=!bad_node1
qsub -l select=1:host=!bad_node1
qsub -l host=!bad_node1&!bad_node2
qsub -l nodes=good_node1+good_node2