queuelist
the command uses the result of the qstat -f
command and displays the information:
- for cores on all nodes for all jobs, including queues (
queuelist
command):
nodes -> | 1 2 3 4 5 6 7 8 9 10 11 12 13|
queue | number of cores |
---------------------+---------------------------------------+--------------
Total: | | cores nodes
1 single | 0 0 0 0 0 0 0 0 0 1 0 0 0| 1 1
1 intel | 0 0 0 0 0 0 0 0 0 0 0 64 64| 128 2
11 normal | 0 48 48 48 32 0 0 0 0 0 0 0 0| 176 4
1 full | 48 0 0 0 0 0 0 0 0 0 0 0 0| 48 1
the result shows that in the queue:single
is one job occupying one core at node n10,intel
is one job occupying a total of 128 cores at nodes n12 and n13,normal
are 11 jobs occupying a total of 176 cores on n2, n3, n4 and n5 nodes,full
is one job occupying the entire node n1.
- regarding the attachment of nodes and cores by individual users (
queuelist -u
command):
nodes -> | 1 2 3 4 5 6 7 8 9 10 11 12 13|
number queue | number of cores |
---------------------+---------------------------------------+--------------
1 tecumseh | 0 0 0 0 0 0 0 0 0 1 0 0 0|
1 karolamik | 48 0 0 0 0 0 0 0 0 0 0 0 0|
12 mzielin | 0 48 48 48 32 0 0 0 0 0 0 64 64|
---------------------+---------------------------------------+--------------
Total: | | cores nodes
1 single | 0 0 0 0 0 0 0 0 0 1 0 0 0| 1 1
1 intel | 0 0 0 0 0 0 0 0 0 0 0 64 64| 128 2
11 normal | 0 48 48 48 32 0 0 0 0 0 0 0 0| 176 4
1 full | 48 0 0 0 0 0 0 0 0 0 0 0 0| 48 1
the result shows information about the jobs (which nodes and cores are occupied) divided into users. In addition, a queue summary is shown. - concerning the distribution of individual jobs in queues (
queuelist -a
command):
nodes -> | 1 2 3 4 5 6 7 8 9 10 11 12 13|
job queue | number of cores |
---------------------+---------------------------------------+--------------
88093 single | 0 0 0 0 0 0 0 0 0 1 0 0 0| tecumseh
88182 full | 48 0 0 0 0 0 0 0 0 0 0 0 0| karolamik
88199 normal | 0 16 0 0 0 0 0 0 0 0 0 0 0| mzielin
88200 normal | 0 16 0 0 0 0 0 0 0 0 0 0 0| mzielin
88201 normal | 0 16 0 0 0 0 0 0 0 0 0 0 0| mzielin
88202 normal | 0 0 16 0 0 0 0 0 0 0 0 0 0| mzielin
88203 normal | 0 0 16 0 0 0 0 0 0 0 0 0 0| mzielin
88204 normal | 0 0 16 0 0 0 0 0 0 0 0 0 0| mzielin
88205 normal | 0 0 0 16 0 0 0 0 0 0 0 0 0| mzielin
88206 normal | 0 0 0 16 0 0 0 0 0 0 0 0 0| mzielin
88207 normal | 0 0 0 16 0 0 0 0 0 0 0 0 0| mzielin
88209 normal | 0 0 0 0 16 0 0 0 0 0 0 0 0| mzielin
88210 normal | 0 0 0 0 16 0 0 0 0 0 0 0 0| mzielin
88215 intel | 0 0 0 0 0 0 0 0 0 0 0 64 64| mzielin
---------------------+---------------------------------------+--------------
Total: | | cores nodes
1 single | 0 0 0 0 0 0 0 0 0 1 0 0 0| 1 1
1 intel | 0 0 0 0 0 0 0 0 0 0 0 64 64| 128 2
11 normal | 0 48 48 48 32 0 0 0 0 0 0 0 0| 176 4
1 full | 48 0 0 0 0 0 0 0 0 0 0 0 0| 48 1
the result shows for individual job:- in which queue was placed,
- what nodes (and how many cores) it occupies,
- who launched the job.
In addition, a queue summary is shown.
queuelist
command is an alias to the kolejki
command.