23

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

Gilles Gouaillardet
  • 8,193
  • 11
  • 24
  • 30
russian_spy
  • 6,465
  • 4
  • 30
  • 26

5 Answers5

34

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

$ qstat -q

russian_spy
  • 6,465
  • 4
  • 30
  • 26
25
qstat -f -Q

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

Elton Carvalho
  • 495
  • 6
  • 11
9

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

likso
  • 3,370
  • 3
  • 17
  • 18
2

Run

qhost -q

to see the node-queue mapping.

Swapnil Patwa
  • 4,069
  • 3
  • 25
  • 37
kbxu
  • 127
  • 1
  • 9
1

Another option:

qmgr -c 'p q'

The p and q are for print queues.

dbeer
  • 6,963
  • 3
  • 31
  • 47
  • 2
    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. – Dima Chubarov Feb 12 '14 at 05:11