Skip to content
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

update docs related to partition table dynamic mode #6542

Merged
merged 7 commits into from
Jul 5, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
add missing anchor
  • Loading branch information
TomShawn committed Jul 5, 2021
commit 83c73bb4e0f6cdcd0ac999957f2870d1b755c418
2 changes: 1 addition & 1 deletion releases/release-5.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ TiDB 在遥测中新增收集集群请求的运行状态,包括执行情况、
- 支持枚举类型下推到 TiKV ,提升 WHERE 子句中使用枚举类型时的性能 [#23619](https://github.com/pingcap/tidb/issues/23619)
- 优化 Window Function 计算过程,解决了使用 ROW_NUMBER() 对数据分页时 TiDB OOM 的问题 [#23807](https://github.com/pingcap/tidb/issues/23807)
- 优化 UNION ALL 的计算过程,解决了使用 UNION ALL 连接大量 SELECT 语句时 TiDB OOM 的问题 [#21441](https://github.com/pingcap/tidb/issues/21441)
- 优化分区表动态模式,提升其性能和稳定性 [#24150](https://github.com/pingcap/tidb/issues/24150)
- 优化分区表动态裁剪模式,提升其性能和稳定性 [#24150](https://github.com/pingcap/tidb/issues/24150)
- 解决多种情况下出现的 `Region is Unavailable` 问题 [project#62](https://github.com/pingcap/tidb/projects/62)

- 修复频繁调度情况下可能出现的多个 `Region is Unavailable` 问题
Expand Down
4 changes: 2 additions & 2 deletions system-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -1094,11 +1094,11 @@ explain select * from t where age=5;

> **警告:**
>
> 目前分区表动态模式为实验特性,不建议在生产环境中使用。
> 目前分区表动态裁剪模式为实验特性,不建议在生产环境中使用。

- 作用域:SESSION | GLOBAL
- 默认值:static
- 这个变量用来设置是否开启分区表动态模式。关于动态模式的详细说明请参阅[分区表动态模式](/partitioned-table.md#动态模式)。
- 这个变量用来设置是否开启分区表动态裁剪模式。关于动态裁剪模式的详细说明请参阅[分区表动态裁剪模式](/partitioned-table.md#动态裁剪模式)。

### `tidb_pprof_sql_cpu` <span class="version-mark">从 v4.0 版本开始引入</span>

Expand Down