SHOW CREATE RESOURCE GROUP

April 22, 2026 ยท View on GitHub

You can use the SHOW CREATE RESOURCE GROUP statement to view the current definition of a resource group.

Note:

This feature is not available on {{{ .starter }}} and {{{ .essential }}} instances.

Synopsis

ShowCreateResourceGroupStmt ::=
    "SHOW" "CREATE" "RESOURCE" "GROUP" ResourceGroupName

ResourceGroupName ::=
    Identifier
|   "DEFAULT"

Examples

Create a resource group rg1.

CREATE RESOURCE GROUP rg1 RU_PER_SEC=100;
Query OK, 0 rows affected (0.10 sec)

View the definition of rg1.

SHOW CREATE RESOURCE GROUP rg1;
***************************[ 1. row ]***************************
+----------------+------------------------------------------------------------+
| Resource_Group | Create Resource Group                                      |
+----------------+------------------------------------------------------------+
| rg1            | CREATE RESOURCE GROUP `rg1` RU_PER_SEC=100 PRIORITY=MEDIUM |
+----------------+------------------------------------------------------------+
1 row in set (0.01 sec)

MySQL compatibility

This statement is a TiDB extension for MySQL.

See also