Help:HPCC Torque Queues: Difference between revisions

From CSDMS
(Create a page that describes the job queues on the HPCC)
 
m (Update job queues)
Line 1: Line 1:
= Job Queues on the CSDMS HPCC =
= Job Queues on the CSDMS HPCC =
We have defined a set of queues that you can submit your jobs to on beach.  Note that if you do not specify a queue, it will be sent to the default queue.  More importantly note that the default queue has a maximum run time of 4 days and so '''if your job has not finished after 4 days, it will be killed'''.
== Cheat Sheet ==
A brief list of the job queues on the CSDMS HPCC.


{|
{|
Line 5: Line 11:
! align=left | Description
! align=left | Description
|-
|-
| Default
| default
| Jobs that should be done within a few days
| Jobs that should be done within a few days
|-
|-
| Fat
| long
| Memory intensive jobs
| Jobs that will run for a long time
|-
| debug
| Short jobs that might be used for testing
|-
|-
| Long
| fat
| Jobs that will run for a long time
| Jobs that need to use memory-rich nodes
|-
|-
| VIP
| vip
| Important jobs that need to get done ''now''
| Important jobs that need to get done ''now''
|-
| Debug
| Short jobs that might be used for testing
|}
|}
Use <tt>qstat</tt> to get an up-to-date summary of the queues.
<geshi lang=bash>
> qstat -q
Queue            Memory CPU Time Walltime Node  Run Que Lm  State
---------------- ------ -------- -------- ----  --- --- --  -----
special_user      --      --      --      --    0  0 --  E R
workq              --      --      --      --    1  0 --  E R
debug              --  02:00:00    --      --    0  0 --  E R
long              --      --      --      --    1  0 --  E R
fat                --      --      --      --    0  0 --  E R
vip                --  24:00:00    --      --    0  0 --  E R
default            --  96:00:00    --      --    0  0 --  E R
                                              ----- -----
                                                  2    0
</geshi>

Revision as of 11:54, 6 July 2009

Job Queues on the CSDMS HPCC

We have defined a set of queues that you can submit your jobs to on beach. Note that if you do not specify a queue, it will be sent to the default queue. More importantly note that the default queue has a maximum run time of 4 days and so if your job has not finished after 4 days, it will be killed.

Cheat Sheet

A brief list of the job queues on the CSDMS HPCC.

Queue Description
default Jobs that should be done within a few days
long Jobs that will run for a long time
debug Short jobs that might be used for testing
fat Jobs that need to use memory-rich nodes
vip Important jobs that need to get done now

Use qstat to get an up-to-date summary of the queues. <geshi lang=bash> > qstat -q Queue Memory CPU Time Walltime Node Run Que Lm State


------ -------- -------- ---- --- --- -- -----

special_user -- -- -- -- 0 0 -- E R workq -- -- -- -- 1 0 -- E R debug -- 02:00:00 -- -- 0 0 -- E R long -- -- -- -- 1 0 -- E R fat -- -- -- -- 0 0 -- E R vip -- 24:00:00 -- -- 0 0 -- E R default -- 96:00:00 -- -- 0 0 -- E R

                                              ----- -----
                                                  2     0

</geshi>