Skip to content

resource control: support more mode for BURSTABLE #20020

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
564c3f9
resource control: support more mode for BURSTABLE
lhy1024 Mar 6, 2025
8e2dd78
add more example
lhy1024 Mar 7, 2025
c87dcee
fix
lhy1024 Mar 7, 2025
c553d32
Update information-schema/information-schema-resource-groups.md
lhy1024 Mar 12, 2025
77b5a92
Update sql-statements/sql-statement-alter-resource-group.md
lhy1024 Mar 12, 2025
df1abc7
Update sql-statements/sql-statement-create-resource-group.md
lhy1024 Mar 12, 2025
b98db28
fix typo
lhy1024 Jun 6, 2025
d4b0432
Merge branch 'burstable' of github.com:lhy1024/docs-cn into burstable
lhy1024 Jun 6, 2025
df0a206
Update information-schema/information-schema-resource-groups.md
lhy1024 Jun 11, 2025
ac2c3bb
Update information-schema/information-schema-resource-groups.md
lhy1024 Jun 11, 2025
049c96b
Update sql-statements/sql-statement-create-resource-group.md
lhy1024 Jun 11, 2025
7ea1e6d
Update tidb-resource-control-ru-groups.md
lhy1024 Jun 11, 2025
e0034c2
Update tidb-resource-control-ru-groups.md
lhy1024 Jun 11, 2025
f1d3139
Update tidb-resource-control-ru-groups.md
lhy1024 Jun 11, 2025
aa316af
Update information-schema/information-schema-resource-groups.md
lhy1024 Jun 11, 2025
0aa5863
Update sql-statements/sql-statement-create-resource-group.md
lhy1024 Jun 11, 2025
ef332af
Update wording for consistency
lilin90 Jun 11, 2025
ddbafce
Remove tabs
lilin90 Jun 16, 2025
0c88290
Update table format
lilin90 Jun 26, 2025
a50ac16
Update for wording and format consistency
lilin90 Jun 26, 2025
b105eb3
Update wording for consistency
lilin90 Jun 26, 2025
86159ca
Update format
lilin90 Jun 26, 2025
bd9328e
Update for consistency
lilin90 Jun 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update tidb-resource-control-ru-groups.md
Co-authored-by: Lilian Lee <[email protected]>
  • Loading branch information
lhy1024 and lilin90 authored Jun 11, 2025
commit e0034c26a2530afdbbd94f96a26ea0c03de20bc5
2 changes: 1 addition & 1 deletion tidb-resource-control-ru-groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ ALTER USER usr2 RESOURCE GROUP rg2;
> **注意:**
>
> - 使用 `CREATE USER` 或者 `ALTER USER` 将用户绑定到资源组后,只会对该用户新建的会话生效,不会对该用户已有的会话生效。
> - TiDB 集群在初始化时会自动创建 `default` 资源组,其 `RU_PER_SEC` 的默认值为 `UNLIMITED` (等同于 `INT` 类型最大值,即 `2147483647`),且 `BURSTABLE` 为 `UNLIMITED` 模式。对于没有绑定资源组的语句会自动绑定至此资源组。此资源组不支持删除,但允许修改其 RU 的配置
> - TiDB 集群在初始化时会自动创建 `default` 资源组,其 `RU_PER_SEC` 的默认值为 `UNLIMITED` (等同于 `INT` 类型最大值,即 `2147483647`),且 `BURSTABLE` 为 `UNLIMITED` 模式。所有未绑定资源组的语句将自动绑定至该资源组。`default` 资源组不支持删除,但支持修改其 RU 配置

要解除用户与资源组的绑定,只需将其重新绑定到 `default` 资源组即可,如下所示:

Expand Down