Finding the Current resource_pool
Value
You can determine the current resource pool by querying for the resource_pool
variable.
SHOW VARIABLES like '%resource_pool%'; **** +---------------+------------+ | Variable_name | Value | +---------------+------------+ | resource_pool | test_pool | +---------------+------------+
SELECT @@resource_pool; **** +-----------------+ | @@resource_pool | +-----------------+ | test_pool | +-----------------+
To query for the complete list of available resource pools, use the SHOW RESOURCE POOLS
command.
SHOW RESOURCE POOLS; **** +--------------+-------------------+---------------+-----------------+---------------------------+ | Pool_Name | Memory_Percentage | Query_Timeout | Max_Concurrency | Soft_CPU_Limit_Percentage | +--------------+-------------------+---------------+-----------------+---------------------------+ | default_pool | 100 | NULL | NULL | 100 | | executive | 60 | NULL | NULL | 50 | | general | 40 | NULL | 40 | 50 | +--------------+-------------------+---------------+-----------------+---------------------------+
For more information, see the Non-Sync Variables List, and SHOW RESOURCE POOLS.