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

add TiDB 5.2.0 release note #6237

Merged
merged 33 commits into from
Aug 27, 2021
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
1bb4973
Create release-5.2.0.md
qiancai Aug 24, 2021
f0ee59a
Update release-5.2.0.md
qiancai Aug 24, 2021
1a1d74b
Update release-5.2.0.md
qiancai Aug 25, 2021
2e7119b
Update releases/release-5.2.0.md
qiancai Aug 25, 2021
e078170
Update releases/release-5.2.0.md
qiancai Aug 25, 2021
cb91e5f
Update releases/release-5.2.0.md
qiancai Aug 25, 2021
cd10318
Apply suggestions from code review
qiancai Aug 25, 2021
b5434e6
Apply suggestions from code review
qiancai Aug 25, 2021
8e984a5
bug fix: pr --> issue
TomShawn Aug 25, 2021
21a6982
Update releases/release-5.2.0.md
TomShawn Aug 25, 2021
f2c1b3d
refine format
TomShawn Aug 25, 2021
4fd986b
Apply suggestions from code review
qiancai Aug 26, 2021
456e8a1
Update releases/release-5.2.0.md
qiancai Aug 26, 2021
d718b2c
Apply suggestions from code review
qiancai Aug 26, 2021
442ddaf
update missed lines
en-jin19 Aug 26, 2021
b20a98c
Update telemetry.md
qiancai Aug 27, 2021
95f5ea0
Apply suggestions from code review
qiancai Aug 27, 2021
4d525e7
Merge remote-tracking branch 'upstream/master' into add_5.2_rc
qiancai Aug 27, 2021
243da00
Merge branch 'add_5.2_rc' of https://github.com/qiancai/docs into add…
qiancai Aug 27, 2021
8406bf8
Update release-5.2.0.md
qiancai Aug 27, 2021
9707848
Update releases/release-5.2.0.md
qiancai Aug 27, 2021
6f3521a
Update releases/release-5.2.0.md
qiancai Aug 27, 2021
1550080
Update releases/release-5.2.0.md
qiancai Aug 27, 2021
cb524c8
Update releases/release-5.2.0.md
TomShawn Aug 27, 2021
dda0aef
Merge remote-tracking branch 'upstream/master' into add_5.2_rc
qiancai Aug 27, 2021
690a6e5
Update tidb-configuration-file.md
qiancai Aug 27, 2021
9f115cf
Update releases/release-5.2.0.md
TomShawn Aug 27, 2021
dcdad8f
Update releases/release-5.2.0.md
TomShawn Aug 27, 2021
0ba1ec8
Update releases/release-5.2.0.md
TomShawn Aug 27, 2021
3d156b3
Update releases/release-5.2.0.md
TomShawn Aug 27, 2021
57cb0b2
Update releases/release-5.2.0.md
qiancai Aug 27, 2021
28e034b
update
qiancai Aug 27, 2021
51909ea
Merge branch 'add_5.2_rc' of https://github.com/qiancai/docs into add…
qiancai Aug 27, 2021
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
Next Next commit
Apply suggestions from code review
Co-authored-by: Zhou Kunqin <25057648+time-and-fate@users.noreply.github.com>
  • Loading branch information
qiancai and time-and-fate authored Aug 26, 2021
commit 4fd986b6ee0a9bdc654d65b91a73028a9fbffd0c
6 changes: 3 additions & 3 deletions releases/release-5.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ TiDB version: 5.2.0
In v5.2, the key new features and improvements are as follows:

- Support expression index to greatly improve query performance
- Improve the accuracy of optimizer estimation (cardinality estimation) to select optimal execution plans
- Improve the accuracy of optimizer cardinality estimation to help to select optimal execution plans
- Announce the general availability (GA) for the Lock View feature to observe transaction locking events and troubleshoot deadlock problems
- Add the TiFlash I/O traffic limit feature to improve the stability of read and write for TiFlash
- Optimize TiKV reserving space management to improve the stability of storage
Expand Down Expand Up @@ -87,10 +87,10 @@ In v5.2, the key new features and improvements are as follows:

[User document](/configure-memory-usage.md#other-memory-control-behaviors-of-tidb-server), [#25882](https://github.com/pingcap/tidb/issues/25882)

- **Improve the accuracy of optimizer estimation (cardinality estimation)**
- **Improve the accuracy of optimizer cardinality estimation**

- Improve the accuracy of TiDB's estimation of TopN/Limit. For example, for pagination queries on a large table that contain the `order by col limit x` condition, TiDB can more easily select the right index and reduce query response time.
- Improve the accuracy of out-of-scope estimation. For example, even if the statistics for a day have not been updated, TiDB can accurately select the corresponding index for a query that contains `where date=Now()`.
- Improve the accuracy of out-of-range estimation. For example, even if the statistics for a day have not been updated, TiDB can accurately select the corresponding index for a query that contains `where date=Now()`.
- Introduce the `tidb_opt_limit_push_down_threshold` variable to control the optimizer's behavior of pushing down Limit/TopN, which resolves the issue that Limit/TopN cannot be pushed down in some situations due to wrong estimation.

[User document](/system-variables.md#tidb_opt_limit_push_down_threshold), [#26085](https://github.com/pingcap/tidb/issues/26085)
Expand Down