Sign InTry Free

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
Identifier

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 |
+----------------+--------------------------------------------+
1 row in set (0.01 sec)

MySQL compatibility

This statement is a TiDB extension for MySQL.

See also

Download PDFRequest docs changesAsk questions on TiDB ForumEdit this page
Was this page helpful?
Products
TiDB Cloud
TiDB
Pricing
Get Demo
© 2023 PingCAP. All Rights Reserved.