Skip to content

Commit

Permalink
release note for tiflash & store-io-pool-size
Browse files Browse the repository at this point in the history
  • Loading branch information
joey-yez committed Jan 17, 2023
1 parent 0030f9a commit e8da094
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions releases/release-6.6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,20 @@ TiDB 版本:6.6.0

更多信息,请参考[用户文档](链接)

* TiFlash 引擎支持 Stale Read 功能 [#4483](https://github.com/pingcap/tiflash/issues/4483) @[hehechen](https://github.com/hehechen)

在 v5.1.1 中,TiDB 正式发布了 Stale Read 功能,TiDB 可以读取指定的时间点或时间范围内的历史数据。Stale Read 允许引擎直接读取本地副本数据,降低读取延迟,提升查询性能。但是,只有 TiKV 引擎支持 Stale Read 功能,TiFlash 引擎并不支持 Stale Read 功能,即使查询的表包含 TiFlash 副本,TiDB 也只能使用 TiKV 副本进行指定时间点或时间范围内的历史数据查询。在 v6.6.0 中,TiFlash 引擎实现了对 Stale Read 功能的支持。使用语法 `AS OF TIMESTAMP` 进行指定时间点或时间范围内的历史数据查询时,如果查询的表包含 TiFlash 副本,优化器可以选择 TiFlash 引擎读取指定的时间点或时间范围内的历史数据。

更多信息,请参考[用户文档](/stale-read.md)

* 新增支持下推以下字符串函数至 TiFlash [#6115](https://github.com/pingcap/tiflash/issues/6115) @[xzhangxian1008](https://github.com/xzhangxian1008)

* `regexp_replace`

* TiFlash 引擎支持独立的 MVCC 位图过滤器 [#6296](https://github.com/pingcap/tiflash/issues/6296) @[JinheLin](https://github.com/JinheLin)

TiFlash 引擎的数据扫描流程包含 MVCC 过滤和扫描列数据等操作。由于 MVCC 过滤和其他数据扫描操作具有较高的耦合性,导致无法对数据扫描流程进行优化改进。在 v6.6.0 中,TiFlash 将整体数据扫描流程中的 MVCC 过滤操作进行解耦,提供独立的 MVCC 位图过滤器,为后续优化数据扫描流程提供基础。

### 事务

* 功能标题 [#issue号](链接) @[贡献者 GitHub ID](链接)
Expand All @@ -75,6 +89,12 @@ TiDB 版本:6.6.0

更多信息,请参考[用户文档](链接)

* 支持动态修改参数 store-io-pool-size [#13964](https://github.com/tikv/tikv/issues/13964) @[LykxSassinator](https://github.com/LykxSassinator)

TiKV 中的 raftstore.store-io-pool-size 参数用于设定处理 Raft I/O 任务的线程池中线程的数量,需要在 TiKV 性能调优时进行修改调整。在 v6.6.0 版本之前,这个参数无法动态修改。v6.6.0 支持对该参数的动态修改功能,提高了 TiKV 性能调优的灵活性。

更多信息,请参考[用户文档](/dynamic-config.md)

### MySQL 兼容性

* 功能标题 [#issue号](链接) @[贡献者 GitHub ID](链接)
Expand Down

0 comments on commit e8da094

Please sign in to comment.