Submit job to multiple hosts in grid-engine

245 views Asked by At

in our lab some machines' disk I/O is down so if I submit my job to that machine, I can't get it done.
However, I can submit them to machines A and B.
I tried

qsub -l hostname=A,B  

But that don't work, it looks like it only allows one hostname(hostname=A)
Is there a workaround?
Thanks!

1

There are 1 answers

0
Mister D. On BEST ANSWER

Try using a wildcard expression; if you want to use A and B hosts :

qsub -l -h='(A|B)'