how do i find a complete list of available torque pbs queues?
Asked Answered
P

5

24

Q: How do I find the available PBS queues on the "typical" Torque MPI system? (asking our admin takes 24+ hours, and the system changes with constant migration)

(for example, "Std8" is one possible queue)

#PBS -q Std8

Postmeridian answered 22/8, 2011 at 19:58 Comment(0)
P
35

The admin finally got back. To get a list of queues on our hpc system, the command is:

$ qstat -q

Postmeridian answered 29/8, 2011 at 16:38 Comment(0)
K
27
qstat -f -Q

shows available queues and details about the limits (cputime, walltime, associated nodes etc.)

Keeper answered 30/1, 2015 at 20:15 Comment(0)
F
9

How about simply "pbsnodes" - that should probably tell you more than you care to know. Or I suppose "qstat -Q".

Fillip answered 22/8, 2011 at 20:29 Comment(1)
The confusing thing is that the queue name is "default", so I didn't see it when I ran your "qstat -Q".Postmeridian
B
2

Run

qhost -q

to see the node-queue mapping.

Blackberry answered 31/1, 2018 at 3:38 Comment(0)
S
1

Another option:

qmgr -c 'p q'

The p and q are for print queues.

Sandrasandro answered 21/10, 2011 at 17:45 Comment(1)
In most cases this would print No Active Queues, nothing done. On the other hand the p s command would print all queues associated with all servers since no active server is set. Yet it would print a lot of extra info that may or may not be useful.Jerryjerrybuild

© 2022 - 2024 — McMap. All rights reserved.