Skip to content

Commit

Permalink
Merge branch 'set-resource-group' of https://github.com/glorv/docs-cn
Browse files Browse the repository at this point in the history
…into pr/13310
  • Loading branch information
hfxsd committed Mar 24, 2023
2 parents 0c61804 + d4d7537 commit 3a73128
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion information-schema/information-schema-resource-groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ mysql> SELECT * FROM information_schema.resource_groups WHERE NAME = 'rg1';

* `NAME`:资源组名称。
* `RU_PER_SEC`:资源组的回填速度,单位为每秒回填的 [Request Unit (RU)](/tidb-resource-control.md#什么是-request-unit-ru) 数量。
* `PRIORITY`资源组在执行过程中的绝对优先级。不同的资源按照 `PRIORITY` 的设置进行调度,`PRIORITY` 高的任务会被优先调度。如果资源组的 `PRIORITY` 相同, `RU_PER_SEC` 越大,优先级越高。如果不指定 `PRIORITY`,资源组的默认优先级为 `MEDIUM`
* `PRIORITY`任务在 TiKV 上处理的绝对优先级。不同的资源按照 `PRIORITY` 的设置进行调度,`PRIORITY` 高的任务会被优先调度。如果资源组的 `PRIORITY` 相同,则会根据 `RU_PER_SEC` 的配置按比例调度。如果不指定 `PRIORITY`,资源组的默认优先级为 `MEDIUM`
* `BURSTABLE`:是否允许此资源组超额使用剩余的系统资源。
2 changes: 1 addition & 1 deletion pd-configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ PD 中内置的 [Resource Control](/tidb-resource-control.md) 相关的配置项

### `degraded-mode-wait-duration`

+ 触发降级模式需要等待的时间。降级模式是指在 Local Token Bucket (LTB) 和 Global Token Bucket (GTB) 失联的情况下,LTB 回退到 resource group 的配置,不再有 GTB 授权 token,从而保证在网络隔离或者异常情况下,服务不受影响。
+ 触发降级模式需要等待的时间。降级模式是指在 Local Token Bucket (LTB) 和 Global Token Bucket (GTB) 失联的情况下,LTB 将回退到默认的资源组配置,不再有 GTB 授权 token,从而保证在网络隔离或者异常情况下,服务不受影响。
+ 默认值: 0s
+ 默认为不开启降级模式

Expand Down
2 changes: 1 addition & 1 deletion sql-statements/sql-statement-alter-resource-group.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ TiDB 支持以下 `DirectResourceGroupOption`, 其中 [Request Unit (RU)](/tidb-
| 参数 | 含义 | 举例 |
|---------------|--------------|--------------------------------------|
| `RU_PER_SEC` | 每秒 RU 填充的速度 | `RU_PER_SEC = 500` 表示此资源组每秒回填 500 个 RU。 |
| `PRIORITY` | 任务被 TiKV 处理的优先级 | `PRIORITY = HIGH` 表示优先级高。若未指定则默认为 `MEDIUM`|
| `PRIORITY` | 任务在 TiKV 上处理的绝对优先级 | `PRIORITY = HIGH` 表示优先级高。若未指定则默认为 `MEDIUM`|
| `BURSTABLE` | 允许对应的资源组超出配额后使用空余的系统资源。 |

> **注意:**
Expand Down
2 changes: 1 addition & 1 deletion sql-statements/sql-statement-create-resource-group.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ TiDB 支持以下 `DirectResourceGroupOption`, 其中 [Request Unit (RU)](/tidb-
| 参数 | 含义 | 举例 |
|---------------|--------------|--------------------------------------|
| `RU_PER_SEC` | 每秒 RU 填充的速度 | `RU_PER_SEC = 500` 表示此资源组每秒回填 500 个 RU。 |
| `PRIORITY` | 任务被 TiKV 处理的优先级 | `PRIORITY = HIGH` 表示优先级高。若未指定,则默认为 `MEDIUM`|
| `PRIORITY` | 任务在 TiKV 上处理的绝对优先级 | `PRIORITY = HIGH` 表示优先级高。若未指定,则默认为 `MEDIUM`|
| `BURSTABLE` | 允许对应的资源组超出配额后使用空余的系统资源。 |

> **注意:**
Expand Down

0 comments on commit 3a73128

Please sign in to comment.