Hi
There is an option to see number of available vs used slots per queue?
Thx
Hi
There is an option to see number of available vs used slots per queue?
Thx
By default when the queues are created, the jobs submitted to any of these queues can use any compute resources across the cluster .Please explain your use case. Please check these commands
qstat -Qf
Hi Adarsh,
thx for your answer, i manage to solve it with this command:
pbsnodes -aS | grep queue_name | awk ‘{ sum+=$8} END {print sum}’ - total
qstat -q | grep queue_name | awk ‘{print $6}’ - used
Thx!