MV_RESOURCE_POOL_STATUS
You can also show resource pool status across your pools with the information_schema.MV_RESOURCE_POOL_STATUS information_schema table. The MV_RESOURCE_POOL_STATUS
view collects data from all nodes. It will give active details about queued queries for resource pools that had set a maximum concurrency, as well as some historical data (killed, finished queries and total and average queue time).
SELECT * FROM information_schema.MV_RESOURCE_POOL_STATUS; **** +---------+-----------+-----------------+------------------+----------------+------------------+---------------------+-----------------------+ | NODE_ID | POOL_NAME | RUNNING_QUERIES | QUEUEING_QUERIES | KILLED_QUERIES | FINISHED_QUERIES | TOTAL_QUEUE_TIME_US | AVERAGE_QUEUE_TIME_US | +---------+-----------+-----------------+------------------+----------------+------------------+---------------------+-----------------------+ | 3 | pool1 | 0 | 0 | 0 | 0 | 0 | 0 | | 1 | pool1 | 0 | 0 | 0 | 0 | 0 | 0 | | 2 | pool1 | 0 | 0 | 0 | 0 | 0 | 0 | +---------+-----------+-----------------+------------------+----------------+------------------+---------------------+-----------------------+
For more information, see ALTER RESOURCE POOL.