From 0a15cc12d404792763e68843a53b7574bb961dd9 Mon Sep 17 00:00:00 2001 From: xixirangrang <35301108+hfxsd@users.noreply.github.com> Date: Fri, 17 Feb 2023 12:05:28 +0800 Subject: [PATCH] Update tidb-resource-control.md --- tidb-resource-control.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tidb-resource-control.md b/tidb-resource-control.md index dc1b15c375a8..fc617530e62c 100644 --- a/tidb-resource-control.md +++ b/tidb-resource-control.md @@ -48,7 +48,7 @@ Request Unit (RU) 是 TiDB 对 CPU、IO 等系统资源的统一抽象的单位, 资源管控特性引入了两个新的全局开关变量: * TiDB: 通过配置全局变量 [`tidb_enable_resource_control`](/system-variables.md#tidb_enable_resource_control-从-v660-版本开始引入) 控制是否打开资源组流控。 -* TiKV: 通过配置参数 [`resource-control.enabled`](/tikv-configuration-file.md#resource_control) 控制是否使用基于资源组配额的请求调度。 +* TiKV: 通过配置参数 [`resource-control.enabled`](/tikv-configuration-file.md#resource-control) 控制是否使用基于资源组配额的请求调度。 这两个参数的组合效果见下表: @@ -82,7 +82,7 @@ Request Unit (RU) 是 TiDB 对 CPU、IO 等系统资源的统一抽象的单位, SET GLOBAL tidb_enable_resource_control = 'ON'; ``` -2. 将 TiKV 参数 [`resource-control.enabled`](/tikv-configuration-file.md#resource_control) 设为 `true`。 +2. 将 TiKV 参数 [`resource-control.enabled`](/tikv-configuration-file.md#resource-control) 设为 `true`。 ### 第 2 步:创建资源组,并绑定用户到资源组 @@ -118,7 +118,7 @@ Request Unit (RU) 是 TiDB 对 CPU、IO 等系统资源的统一抽象的单位, TiDB 会定时采集资源管控的运行时信息,并在 Grafana 的 **Resource Control Dashboard** 中提供了相关指标的可视化图表。指标详情参见 [Resource Control 监控指标详解](/grafana-resource-control-dashboard.md) 。 -TiKV 中也记录了来自于不同资源组的请求 QPS,详见 [TiKV监控指标详解](/grafana-tikv-dashboard.md#gRPC) +TiKV 中也记录了来自于不同资源组的请求 QPS,详见 [TiKV监控指标详解](/grafana-tikv-dashboard.md#grpc) ## 工具兼容性