diff --git a/TOC.md b/TOC.md index 25f67af6e744c..2757c804f0036 100644 --- a/TOC.md +++ b/TOC.md @@ -4,7 +4,7 @@ - [Docs Home](https://docs.pingcap.com/) - About TiDB - [TiDB Introduction](/overview.md) - - [TiDB 6.5 Release Notes](/releases/release-6.5.0.md) + - [TiDB 6.6 Release Notes](/releases/release-6.6.0.md) - [Features](/basic-features.md) - [MySQL Compatibility](/mysql-compatibility.md) - [TiDB Limitations](/tidb-limitations.md) @@ -939,6 +939,8 @@ - [Release Timeline](/releases/release-timeline.md) - [TiDB Versioning](/releases/versioning.md) - [TiDB Installation Packages](/binary-package.md) + - v6.6 + - [6.6.0](/releases/release-6.6.0.md) - v6.5 - [6.5.0](/releases/release-6.5.0.md) - v6.4 diff --git a/releases/release-6.6.0.md b/releases/release-6.6.0.md new file mode 100644 index 0000000000000..055e253c0b55a --- /dev/null +++ b/releases/release-6.6.0.md @@ -0,0 +1,615 @@ +--- +title: TiDB 6.6.0 Release Notes +summary: Learn about the new features, compatibility changes, improvements, and bug fixes in TiDB 6.6.0. +--- + +# TiDB 6.6.0 Release Notes + +Release date: February 20, 2023 + +TiDB version: 6.6.0-[DMR](/releases/versioning.md#development-milestone-releases) + +Quick access: [Quick start](https://docs.pingcap.com/tidb/v6.6/quick-start-with-tidb) | [Installation package](https://www.pingcap.com/download/?version=v6.6.0#version-list) + +In v6.6.0-DMR, the key new features and improvements are as follows: + +
Category | +Feature | +Description | +
---|---|---|
Scalability and Performance |
+ TiKV supports Partitioned-Raft-KV storage engine (experimental) | +TiKV introduces the Partitioned-Raft-KV storage engine, and each Region uses an independent RocksDB instance, which can easily expand the storage capacity of the cluster from TB to PB and provide more stable write latency and stronger scalability. | +
TiKV supports batch aggregating data requests | +This enhancement significantly reduces total RPCs in TiKV batch-get operations. In situations where data is highly dispersed and the gRPC thread pool has insufficient resources, batching coprocessor requests can improve performance by more than 50%. | +|
TiFlash supports Stale Read and compression exchange | +TiFlash supports the stale read feature, which can improve query performance in scenarios where real-time requirements are not restricted. TiFlash supports data compression to improve the efficiency of parallel data exchange, and the overall TPC-H performance improves by 10%, which can save more than 50% of the network usage. | +|
Reliability and availability |
+ Resource control (experimental) | +Support resource management based on resource groups, which maps database users to the corresponding resource groups and sets quotas for each resource group based on actual needs. | +
Historical SQL binding | +Support binding historical execution plans and quickly binding execution plans on TiDB Dashboard. | +|
SQL functionalities |
+ Foreign key | +Support MySQL-compatible foreign key constraints to maintain data consistency and improve data quality. | +
Multi-valued index (experimental) | +Introduce MySQL-compatible multi-valued indexes and enhance the JSON type to improve TiDB's compatibility with MySQL 8.0. | +|
DB operations and observability |
+ DM supports physical import (experimental) | +TiDB Data Migration (DM) integrates TiDB Lightning's physical import mode to improve the performance of full data migration, with performance being up to 10 times faster. | +