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

32,466

Solution 1

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

$ qstat -q

Solution 2

qstat -f -Q

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

Solution 3

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

Solution 4

Run

qhost -q

to see the node-queue mapping.

Solution 5

Another option:

qmgr -c 'p q'

The p and q are for print queues.

Share:
32,466
russian_spy
Author by

russian_spy

Updated on January 31, 2020

Comments

  • russian_spy
    russian_spy over 4 years

    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

  • russian_spy
    russian_spy over 12 years
    The confusing thing is that the queue name is "default", so I didn't see it when I ran your "qstat -Q".
  • Dmitri Chubarov
    Dmitri Chubarov about 10 years
    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.