diff --git a/deploy-monitoring-services.md b/deploy-monitoring-services.md index dbd7607ced2a..b64581589091 100644 --- a/deploy-monitoring-services.md +++ b/deploy-monitoring-services.md @@ -230,7 +230,7 @@ url = https://grafana.net 2. 在侧边栏菜单中,依次点击 **Dashboards** > **Import** 打开 **Import Dashboard** 窗口。 -3. 点击 **Upload .json File** 上传对应的 JSON 文件(从 [pingcap/tidb](https://github.com/pingcap/tidb/tree/master/metrics/grafana)、[tikv/tikv](https://github.com/tikv/tikv/tree/master/metrics/grafana) 和 [tikv/pd](https://github.com/tikv/pd/tree/master/metrics/grafana) 下载 TiDB Grafana 配置文件)。 +3. 点击 **Upload .json File** 上传对应的 JSON 文件(从 [pingcap/tidb](https://github.com/pingcap/tidb/tree/release-7.4/metrics/grafana)、[tikv/tikv](https://github.com/tikv/tikv/tree/master/metrics/grafana) 和 [tikv/pd](https://github.com/tikv/pd/tree/master/metrics/grafana) 下载 TiDB Grafana 配置文件)。 > **注意:** > diff --git a/functions-and-operators/precision-math.md b/functions-and-operators/precision-math.md index 61e24e5edd8e..a9dd07c33654 100644 --- a/functions-and-operators/precision-math.md +++ b/functions-and-operators/precision-math.md @@ -56,7 +56,7 @@ DECIMAL 列不存储前导的字符 `+` 或字符 `-` 或数字 `0`。如果将 DECIMAL 列不允许插入大于列定义的隐含范围的值。例如:DECIMAL(3, 0) 列范围为`-999` 到 `999`。DECIMAL(M, D) 列小数点左边部分最多支持 M-D 位数字。 -有关 DECIMAL 值的内部格式完整说明,请参阅 TiDB 源码文件 [types/mydecimal.go](https://github.com/pingcap/tidb/blob/master/types/mydecimal.go)。 +有关 DECIMAL 值的内部格式完整说明,请参阅 TiDB 源码文件 [`types/mydecimal.go`](https://github.com/pingcap/tidb/blob/release-7.4/types/mydecimal.go)。 ## 表达式计算 diff --git a/maintain-tidb-using-tiup.md b/maintain-tidb-using-tiup.md index e6707456ac3f..fc59359ebfe5 100644 --- a/maintain-tidb-using-tiup.md +++ b/maintain-tidb-using-tiup.md @@ -100,7 +100,7 @@ tiup cluster display ${cluster-name} **配置项层次结构使用 `.` 表示**。 - 关于组件的更多配置参数说明,可参考 [tidb `config.toml.example`](https://github.com/pingcap/tidb/blob/master/config/config.toml.example)、[tikv `config.toml.example`](https://github.com/tikv/tikv/blob/master/etc/config-template.toml) 和 [pd `config.toml.example`](https://github.com/tikv/pd/blob/master/conf/config.toml)。 + 关于组件的更多配置参数说明,可参考 [tidb `config.toml.example`](https://github.com/pingcap/tidb/blob/release-7.4/config/config.toml.example)、[tikv `config.toml.example`](https://github.com/tikv/tikv/blob/master/etc/config-template.toml) 和 [pd `config.toml.example`](https://github.com/tikv/pd/blob/master/conf/config.toml)。 3. 执行 `reload` 命令滚动分发配置、重启相应组件: @@ -112,7 +112,7 @@ tiup cluster display ${cluster-name} ### 示例 -如果要调整 tidb-server 中事务大小限制参数 `txn-total-size-limit` 为 `1G`,该参数位于 [performance](https://github.com/pingcap/tidb/blob/master/config/config.toml.example) 模块下,调整后的配置如下: +如果要调整 tidb-server 中事务大小限制参数 `txn-total-size-limit` 为 `1G`,该参数位于 [performance](https://github.com/pingcap/tidb/blob/release-7.4/config/config.toml.example) 模块下,调整后的配置如下: ``` server_configs: diff --git a/performance-tuning-methods.md b/performance-tuning-methods.md index 356ef931c7bc..38e581a7a206 100644 --- a/performance-tuning-methods.md +++ b/performance-tuning-methods.md @@ -481,7 +481,7 @@ Store 线程的 Commit Log Duration 明显比 Apply Log Duration 高,并且 Ap ## 低于 v6.1.0 的 TiDB 版本如何使用 Performance overview 面板 -从 v6.1.0 起,TiDB Grafana 组件默认内置了 Performance Overview 面板。Performance overview 面板兼容 TiDB v4.x 和 v5.x 版本。如果你的 TiDB 版本低于 v6.1.0,需要手动导入 [`performance_overview.json`](https://github.com/pingcap/tidb/blob/master/metrics/grafana/performance_overview.json)。 +从 v6.1.0 起,TiDB Grafana 组件默认内置了 Performance Overview 面板。Performance overview 面板兼容 TiDB v4.x 和 v5.x 版本。如果你的 TiDB 版本低于 v6.1.0,需要手动导入 [`performance_overview.json`](https://github.com/pingcap/tidb/blob/release-7.4/metrics/grafana/performance_overview.json)。 导入方法如图所示: diff --git a/production-deployment-using-tiup.md b/production-deployment-using-tiup.md index 8173416ceb44..2c6dedb1aa48 100644 --- a/production-deployment-using-tiup.md +++ b/production-deployment-using-tiup.md @@ -294,7 +294,7 @@ alertmanager_servers: 更多参数说明,请参考: -- [TiDB `config.toml.example`](https://github.com/pingcap/tidb/blob/master/config/config.toml.example) +- [TiDB `config.toml.example`](https://github.com/pingcap/tidb/blob/release-7.4/config/config.toml.example) - [TiKV `config.toml.example`](https://github.com/tikv/tikv/blob/master/etc/config-template.toml) - [PD `config.toml.example`](https://github.com/pingcap/pd/blob/master/conf/config.toml) - [TiFlash `config.toml.example`](https://github.com/pingcap/tiflash/blob/master/etc/config-template.toml) diff --git a/tidb-binlog/binlog-consumer-client.md b/tidb-binlog/binlog-consumer-client.md index 8fd3ffe9dc5d..2c8593b5baf8 100644 --- a/tidb-binlog/binlog-consumer-client.md +++ b/tidb-binlog/binlog-consumer-client.md @@ -116,7 +116,7 @@ message Binlog { } ``` -查看数据格式的具体定义,参见 [`secondary_binlog.proto`](https://github.com/pingcap/tidb/blob/master/tidb-binlog/proto/proto/secondary_binlog.proto)。 +查看数据格式的具体定义,参见 [`secondary_binlog.proto`](https://github.com/pingcap/tidb/blob/release-7.4/tidb-binlog/proto/proto/secondary_binlog.proto)。 ### Driver @@ -138,7 +138,7 @@ TiDB-Tools 项目提供了用于读取 Kafka 中 binlog 数据的 Driver,具 * 使用该 Driver 将数据同步到 MySQL,该示例包含将 binlog 转化为 SQL 的具体方法 * 使用该 Driver 将数据打印出来 -Driver 项目地址:[Binlog Slave Driver](https://github.com/pingcap/tidb/tree/master/tidb-binlog/driver)。 +Driver 项目地址:[Binlog Slave Driver](https://github.com/pingcap/tidb/tree/release-7.4/tidb-binlog/driver)。 > **注意:** > diff --git a/tidb-configuration-file.md b/tidb-configuration-file.md index e1085dd57aa8..a3a201ce9798 100644 --- a/tidb-configuration-file.md +++ b/tidb-configuration-file.md @@ -6,7 +6,7 @@ title: TiDB 配置文件描述 # TiDB 配置文件描述 -TiDB 配置文件比命令行参数支持更多的选项。你可以在 [config/config.toml.example](https://github.com/pingcap/tidb/blob/master/config/config.toml.example) 找到默认值的配置文件,重命名为 `config.toml` 即可。本文档只介绍未包含在[命令行参数](/command-line-flags-for-tidb-configuration.md)中的参数。 +TiDB 配置文件比命令行参数支持更多的选项。你可以在 [config/config.toml.example](https://github.com/pingcap/tidb/blob/release-7.4/config/config.toml.example) 找到默认值的配置文件,重命名为 `config.toml` 即可。本文档只介绍未包含在[命令行参数](/command-line-flags-for-tidb-configuration.md)中的参数。 > **Tip:** > diff --git a/troubleshoot-lock-conflicts.md b/troubleshoot-lock-conflicts.md index 0d8cac0a40ef..1c4c34613e82 100644 --- a/troubleshoot-lock-conflicts.md +++ b/troubleshoot-lock-conflicts.md @@ -328,7 +328,7 @@ ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction ### TTL manager has timed out -除了有不能超出 GC 时间的限制外,悲观锁的 TTL 有上限,默认为 1 小时,所以执行时间超过 1 小时的悲观事务有可能提交失败。这个超时时间由 TiDB 参数 [performance.max-txn-ttl](https://github.com/pingcap/tidb/blob/master/config/config.toml.example) 指定。 +除了有不能超出 GC 时间的限制外,悲观锁的 TTL 有上限,默认为 1 小时,所以执行时间超过 1 小时的悲观事务有可能提交失败。这个超时时间由 TiDB 参数 [`performance.max-txn-ttl`](https://github.com/pingcap/tidb/blob/release-7.4/config/config.toml.example) 指定。 可通过查看 TiDB 日志查看报错信息: