THREAD_POOL_GROUPS
This page is part of MariaDB's Documentation.
The parent of this page is: Information Schema for MariaDB Enterprise Server
Topics on this page:
Overview
DETAILS
SCHEMA
CREATE TEMPORARY TABLE `THREAD_POOL_GROUPS` (
`GROUP_ID` int(6) NOT NULL,
`CONNECTIONS` int(6) NOT NULL,
`THREADS` int(6) NOT NULL,
`ACTIVE_THREADS` int(6) NOT NULL,
`STANDBY_THREADS` int(6) NOT NULL,
`QUEUE_LENGTH` int(6) NOT NULL,
`HAS_LISTENER` tinyint(1) NOT NULL,
`IS_STALLED` tinyint(1) NOT NULL
)
Column Descriptions
Variable | Description |
---|---|
GROUP_ | There is one row in the table for every thread group, the number of thread groups is determined by the thread_ |
CONNECTIONS | The client connections currently handled by this thread group |
THREADS | The total number of threads in this thread group, sum of active, standby, and listener threads |
ACTIVE_ | The number of threads actually executing a query |
STANDBY_ | The number of threads in the thread group that are not actually executing a query right now |
QUEUE_ | The number of client query requests still waiting to be assigned to a worker thread |
HAS_ | Checks if there is a dedicated listener thread present in this thread group. The value is always 1 if thread_ |
IS_ | Checks whether there is a worker thread in this group that has exceeded thread_ |