diff --git a/markdown-pages/en/tidb/master/releases/release-7.4.0.md b/markdown-pages/en/tidb/master/releases/release-7.4.0.md index 4383d4656..702412727 100644 --- a/markdown-pages/en/tidb/master/releases/release-7.4.0.md +++ b/markdown-pages/en/tidb/master/releases/release-7.4.0.md @@ -30,7 +30,7 @@ Quick access: [Quick start](https://docs.pingcap.com/tidb/v7.4/quick-start-with-
IMPORT INTO
and ADD INDEX
operations via global sortADD INDEX
or IMPORT INTO
in the distributed execution framework required TiDB nodes to allocate local disk space for sorting data before importing it into TiKV. This approach involves partial and localized sorting, and often results in data overlaps, leading to increased resource consumption and lower performance and stability of TiKV. With the introduction of the Global Sorting feature in v7.4.0, data is temporarily stored in S3 for global sorting before being imported into TiKV in an orderly manner. This eliminates the need for TiKV to consume extra resources on compactions and significantly improves the performance and stability of operations like ADD INDEX
and IMPORT INTO
.ADD INDEX
or IMPORT INTO
using the distributed execution framework meant localized and partial sorting, which ultimately led to TiKV doing a lot of extra work to make up for the partial sorting. These jobs also required TiDB nodes to allocate local disk space for sorting, before loading to TiKV.ADD INDEX
and IMPORT INTO
.