Skip to content

tiflash: add config of enable_version_chain #20347

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 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
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
7 changes: 7 additions & 0 deletions tiflash/tiflash-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,13 @@ I/O 限流功能相关配置。
- 默认值:`false`
- 可选值:`true`、`false`

##### `enable_version_chain` <span class="version-mark">从 v9.0.0 版本开始引入</span>

- 用于控制 TiFlash 实现 MVCC 过滤的算法。如果设置为 `1`,则使用 VersionChain 算法;如果设置为 `0`,则使用 DeltaIndex 算法。
- VersionChain 算法通过避免对数据进行排序来提升 MVCC 过滤的性能。正常情况下,采用 VersionChain 算法的扫表性能要明显优于 DeltaIndex 算法。
- 默认值:`1`
- 可选值:`1`、`0`

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

安全相关配置。
Expand Down