user2796649
user2796649

Reputation: 1

Find free nodes on cluster with SGE

I'm looking for the SGE equivalent to PBS's "qstat -freenodes", basically I want to find all nodes that have nothing running. Suggestions?

Upvotes: 0

Views: 3162

Answers (2)

Supriyo Naskar
Supriyo Naskar

Reputation: 19

It should be:

pbsnodes -l free

Upvotes: 0

William Hay
William Hay

Reputation: 2308

If you have an exclusive resource associated with the hosts you can use qhost:

qhost -l exclusive=TRUE

This should work even if you make the exclusive resource non-requestable.

Upvotes: 2

Related Questions