You are viewing the archived documentation of TiDB, which no longer receives updates.

View latest LTS version docs

SHOW CREATE RESOURCE GROUP

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

Synopsis

ShowCreateResourceGroupStmt
SHOWCREATERESOURCEGROUPResourceGroupName
ResourceGroupName
IdentifierDEFAULT

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