I have two queues in SGE for different purposes. Each of them has a limit in slots. What I want is to have only a certain number of jobs submitted to a queue waiting even when the other queue is idle. However, what I found is the additional jobs were assigned to the second queue. How should I change the configuration?

link|improve this question
I'm not sure I understand your question. You want jobs to wait for a queue to become available, up until you reach a certain number of jobs, and only then utilize the other queue? – Kamil Kisiel Nov 17 '11 at 19:31
feedback

1 Answer

You need to specify the queue name when submitting:

qsub -l qname=<queue name> ...

Then the other queue will not be used.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.