From 050df7dbe3b3717aaedacf31061056c2f576b965 Mon Sep 17 00:00:00 2001 From: Aolin Date: Wed, 13 May 2026 16:50:11 +0800 Subject: [PATCH 1/6] add Related resources to more docs --- ai/concepts/vector-search-overview.md | 13 +++++++++ br/backup-and-restore-overview.md | 12 ++++++++ choose-index.md | 12 ++++++++ clustered-indexes.md | 12 ++++++++ dm/migrate-data-using-dm.md | 12 ++++++++ dumpling-overview.md | 12 ++++++++ get-started-with-tidb-lightning.md | 12 ++++++++ integration-overview.md | 15 +++++++++- overview.md | 12 ++++++++ partitioned-table.md | 12 ++++++++ production-deployment-using-tiup.md | 12 ++++++++ releases/release-8.5.0.md | 13 +++++++++ .../sync-diff-inspector-overview.md | 12 ++++++++ ticdc/ticdc-overview.md | 12 ++++++++ tidb-cloud/branch-overview.md | 13 +++++++++ .../integrate-tidbcloud-with-airbyte.md | 15 ++++++++-- tidb-cloud/tidb-cloud-intro.md | 28 +++++++++++++++++++ tidb-cloud/tidb-x-architecture.md | 28 +++++++++++++++++++ tidb-resource-control-ru-groups.md | 12 ++++++++ tiflash/tiflash-overview.md | 13 +++++++++ 20 files changed, 278 insertions(+), 4 deletions(-) diff --git a/ai/concepts/vector-search-overview.md b/ai/concepts/vector-search-overview.md index eaca016526a25..41f56b445be9a 100644 --- a/ai/concepts/vector-search-overview.md +++ b/ai/concepts/vector-search-overview.md @@ -72,3 +72,16 @@ To get started with TiDB Vector Search, see the following documents: - [Get started with vector search using Python](/ai/quickstart-via-python.md) - [Get started with vector search using SQL](/ai/quickstart-via-sql.md) + +## Related resources + + + + diff --git a/br/backup-and-restore-overview.md b/br/backup-and-restore-overview.md index 665f71a8d80df..0bb3cd872a265 100644 --- a/br/backup-and-restore-overview.md +++ b/br/backup-and-restore-overview.md @@ -177,3 +177,15 @@ The following table lists the compatibility matrix for log backups. Note that al - [TiDB Snapshot Backup and Restore Guide](/br/br-snapshot-guide.md) - [TiDB Log Backup and PITR Guide](/br/br-pitr-guide.md) - [Backup Storages](/br/backup-and-restore-storages.md) + +## Related resources + + + + diff --git a/choose-index.md b/choose-index.md index 753a4e01334ac..0be906c4bf945 100644 --- a/choose-index.md +++ b/choose-index.md @@ -687,3 +687,15 @@ mysql> SHOW WARNINGS; -- cannot hit plan cache since the JSON_CONTAINS predicat +---------+------+-------------------------------------------------------------------------------------------------------+ 1 row in set (0.01 sec) ``` + +## Related resources + + + + diff --git a/clustered-indexes.md b/clustered-indexes.md index 8e474debdd345..69126f05d3b11 100644 --- a/clustered-indexes.md +++ b/clustered-indexes.md @@ -215,3 +215,15 @@ The attribute [`AUTO_RANDOM`](/auto-random.md) can only be used on clustered ind mysql> create table t (a bigint primary key nonclustered auto_random); ERROR 8216 (HY000): Invalid auto random: column a is not the integer primary key, or the primary key is nonclustered ``` + +## Related resources + + + + diff --git a/dm/migrate-data-using-dm.md b/dm/migrate-data-using-dm.md index 5cb316c28ee1a..8936e70049ff4 100644 --- a/dm/migrate-data-using-dm.md +++ b/dm/migrate-data-using-dm.md @@ -188,3 +188,15 @@ While the DM cluster is running, DM-master, DM-worker, and dmctl output the moni - DM-master log directory: It is specified by the `--log-file` DM-master process parameter. If DM is deployed using TiUP, the log directory is `{log_dir}` in the DM-master node. - DM-worker log directory: It is specified by the `--log-file` DM-worker process parameter. If DM is deployed using TiUP, the log directory is `{log_dir}` in the DM-worker node. + +## Related resources + + + + diff --git a/dumpling-overview.md b/dumpling-overview.md index 9b1a404e4180f..3d9d2a665a513 100644 --- a/dumpling-overview.md +++ b/dumpling-overview.md @@ -450,3 +450,15 @@ In addition to output data files, you can define `--output-filename-template` to | view | `{{fn .DB}}.{{fn .Table}}-schema-view` | For example, using `--output-filename-template '{{define "table"}}{{fn .Table}}.$schema{{end}}{{define "data"}}{{fn .Table}}.{{printf "%09d" .Index}}{{end}}'`, Dumpling will write the schema of the table `db.tbl:normal` into a file named `tbl%3Anormal.$schema.sql`, and write the data into files `tbl%3Anormal.000000000.sql`, `tbl%3Anormal.000000001.sql`, and so on. + +## Related resources + + + + diff --git a/get-started-with-tidb-lightning.md b/get-started-with-tidb-lightning.md index 70c857d8a1f2a..3731e2f9cdcee 100644 --- a/get-started-with-tidb-lightning.md +++ b/get-started-with-tidb-lightning.md @@ -113,3 +113,15 @@ If any error occurs, refer to [TiDB Lightning FAQs](/tidb-lightning/tidb-lightni This tutorial briefly introduces what TiDB Lightning is and how to quickly deploy a TiDB Lightning cluster to import full backup data to the TiDB cluster. For detailed features and usage about TiDB Lightning, refer to [TiDB Lightning Overview](/tidb-lightning/tidb-lightning-overview.md). + +## Related resources + + + + diff --git a/integration-overview.md b/integration-overview.md index 5988a1ffa59aa..75a087b66946c 100644 --- a/integration-overview.md +++ b/integration-overview.md @@ -13,4 +13,17 @@ You can use TiCDC to replicate incremental data from TiDB to Confluent Cloud, an ## Integrate with Apache Kafka and Apache Flink -You can use TiCDC to replicate incremental data from TiDB to Apache Kafka, and consume the data using Apache Flink. For details, see [Integrate with Apache Kafka and Apache Flink](/replicate-data-to-kafka.md). \ No newline at end of file +You can use TiCDC to replicate incremental data from TiDB to Apache Kafka, and consume the data using Apache Flink. For details, see [Integrate with Apache Kafka and Apache Flink](/replicate-data-to-kafka.md). + +## Related resources + + + + diff --git a/overview.md b/overview.md index 8d8b582b1c458..62b73b406221e 100644 --- a/overview.md +++ b/overview.md @@ -67,3 +67,15 @@ The following video introduces key features of TiDB. - [TiDB Storage](/tidb-storage.md) - [TiDB Computing](/tidb-computing.md) - [TiDB Scheduling](/tidb-scheduling.md) + +## Related resources + + + + diff --git a/partitioned-table.md b/partitioned-table.md index aee29f41cdfc2..4c4f3e6e7cce0 100644 --- a/partitioned-table.md +++ b/partitioned-table.md @@ -2102,3 +2102,15 @@ Currently, `static` pruning mode does not support plan cache for both prepared a SET session tidb_partition_prune_mode = dynamic; source gatherGlobalStats.sql ``` + +## Related resources + + + + diff --git a/production-deployment-using-tiup.md b/production-deployment-using-tiup.md index fb314a0293f2f..d669709ec03df 100644 --- a/production-deployment-using-tiup.md +++ b/production-deployment-using-tiup.md @@ -398,3 +398,15 @@ If you have deployed [TiCDC](/ticdc/ticdc-overview.md) along with the TiDB clust - [TiCDC FAQs](/ticdc/ticdc-faq.md) If you want to scale out or scale in your TiDB cluster without interrupting the online services, see [Scale a TiDB Cluster Using TiUP](/scale-tidb-using-tiup.md). + +## Related resources + + + + diff --git a/releases/release-8.5.0.md b/releases/release-8.5.0.md index 05042e64d8827..fe24b3cbad3c3 100644 --- a/releases/release-8.5.0.md +++ b/releases/release-8.5.0.md @@ -443,3 +443,16 @@ We would like to thank the following contributors from the TiDB community: - [LindaSummer](https://github.com/LindaSummer) - [songzhibin97](https://github.com/songzhibin97) - [Hexilee](https://github.com/Hexilee) + +## Related resources + + + + diff --git a/sync-diff-inspector/sync-diff-inspector-overview.md b/sync-diff-inspector/sync-diff-inspector-overview.md index 713b167045ed7..c411c17f35ee1 100644 --- a/sync-diff-inspector/sync-diff-inspector-overview.md +++ b/sync-diff-inspector/sync-diff-inspector-overview.md @@ -318,3 +318,15 @@ REPLACE INTO `sbtest`.`sbtest99`(`id`,`k`,`c`,`pad`) VALUES (3700000,2501808,'he - sync-diff-inspector divides data into chunks first according to TiDB statistics and you need to guarantee the accuracy of the statistics. You can manually run the `analyze table {table_name}` command when the TiDB server's *workload is light*. - Pay special attention to `table-rules`. If you configure `schema-pattern="test1"`, `table-pattern = "t_1"`, `target-schema="test2"` and `target-table = "t_2"`, the `test1`.`t_1` schema in the source database and the `test2`.`t_2` schema in the target database are compared. Sharding is enabled by default in sync-diff-inspector, so if the source database has a `test2`.`t_2` table, the `test1`.`t_1` table and `test2`.`t_2` table in the source database serving as sharding are compared with the `test2`.`t_2` table in the target database. - The generated SQL file is only used as a reference for repairing data, and you need to confirm it before executing these SQL statements to repair data. + +## Related resources + + + + diff --git a/ticdc/ticdc-overview.md b/ticdc/ticdc-overview.md index 0dbb6611fe287..97a7ffec49656 100644 --- a/ticdc/ticdc-overview.md +++ b/ticdc/ticdc-overview.md @@ -162,3 +162,15 @@ Currently, the following scenarios are not supported: - Starting from v8.2.0, BR relaxes the restrictions on data restoration for TiCDC: if the `BackupTS` (the backup time) of the data to be restored is earlier than the changefeed [`CheckpointTS`](/ticdc/ticdc-classic-architecture.md#checkpointts) (the timestamp that indicates the current replication progress), BR can proceed with the data restoration normally. Considering that the `BackupTS` is usually much earlier, it can be assumed that in most scenarios, BR supports restoring data for a cluster with TiCDC replication tasks. TiCDC only partially supports scenarios involving large transactions in the upstream. For details, refer to the [TiCDC FAQ](/ticdc/ticdc-faq.md#does-ticdc-support-replicating-large-transactions-is-there-any-risk), where you can find details on whether TiCDC supports replicating large transactions and any associated risks. + +## Related resources + + + + diff --git a/tidb-cloud/branch-overview.md b/tidb-cloud/branch-overview.md index f136517546f3b..3d7c99ec07a35 100644 --- a/tidb-cloud/branch-overview.md +++ b/tidb-cloud/branch-overview.md @@ -57,3 +57,16 @@ If you need more quotas, [contact TiDB Cloud Support](/tidb-cloud/tidb-cloud-sup ## What's next - [Learn how to manage branches](/tidb-cloud/branch-manage.md) + +## Related resources + + + + diff --git a/tidb-cloud/integrate-tidbcloud-with-airbyte.md b/tidb-cloud/integrate-tidbcloud-with-airbyte.md index 273e929e64cf7..a3ef012c384de 100644 --- a/tidb-cloud/integrate-tidbcloud-with-airbyte.md +++ b/tidb-cloud/integrate-tidbcloud-with-airbyte.md @@ -106,6 +106,15 @@ The following steps use TiDB as both a source and a destination. Other connector - TiDB destination converts the `timestamp` type to the `varchar` type in default normalization mode. It happens because Airbyte converts the timestamp type to string during transmission, and TiDB does not support `cast ('2020-07-28 14:50:15+1:00' as timestamp)`. - For some large ELT missions, you need to increase the parameters of [transaction restrictions](/develop/dev-guide-transaction-restraints.md#large-transaction-restrictions) in TiDB. -## See also - -[Using Airbyte to Migrate Data from TiDB Cloud to Snowflake](https://www.pingcap.com/blog/using-airbyte-to-migrate-data-from-tidb-cloud-to-snowflake/). +## Related resources + + + + diff --git a/tidb-cloud/tidb-cloud-intro.md b/tidb-cloud/tidb-cloud-intro.md index 283986df68fff..9ad9e740e8164 100644 --- a/tidb-cloud/tidb-cloud-intro.md +++ b/tidb-cloud/tidb-cloud-intro.md @@ -139,3 +139,31 @@ TiDB Cloud provides the following deployment options: - Your VPC You can connect to your TiDB Cloud resource via private endpoint connection or VPC peering connection. Refer to [Set Up Private Endpoint Connections](/tidb-cloud/set-up-private-endpoint-connections.md) or [Set up VPC Peering Connection](/tidb-cloud/set-up-vpc-peering-connections.md) for details. + +## Related resources + + + + + + diff --git a/tidb-cloud/tidb-x-architecture.md b/tidb-cloud/tidb-x-architecture.md index fa56ff1f87ced..6662d1fbe6508 100644 --- a/tidb-cloud/tidb-x-architecture.md +++ b/tidb-cloud/tidb-x-architecture.md @@ -157,3 +157,31 @@ The following table summarizes the architectural transitions from classic TiDB t | DDL execution | DDL competes with user traffic for local CPU and I/O | DDL offloaded to elastic compute resources | Faster schema changes with more predictable latency | | Cost model | Requires over-provisioning for peak workloads | Elastic TCO (pay-as-you-go) | Pay only for actual resource consumption | | Backup | Data-volume dependent physical backup | Metadata-driven with object storage integration | Significantly faster backup operations | + +## Related resources + + + + + + diff --git a/tidb-resource-control-ru-groups.md b/tidb-resource-control-ru-groups.md index ee239c1f5a1bd..7c911ccf7e4dd 100644 --- a/tidb-resource-control-ru-groups.md +++ b/tidb-resource-control-ru-groups.md @@ -440,3 +440,15 @@ The resource control feature does not impact the regular usage of data import, e * [ALTER RESOURCE GROUP](/sql-statements/sql-statement-alter-resource-group.md) * [DROP RESOURCE GROUP](/sql-statements/sql-statement-drop-resource-group.md) * [RESOURCE GROUP RFC](https://github.com/pingcap/tidb/blob/release-8.5/docs/design/2022-11-25-global-resource-control.md) + +## Related resources + + + + diff --git a/tiflash/tiflash-overview.md b/tiflash/tiflash-overview.md index 7b95c2d4091d5..bf03adba475d2 100644 --- a/tiflash/tiflash-overview.md +++ b/tiflash/tiflash-overview.md @@ -121,3 +121,16 @@ To experience the whole process from importing data to querying in a TPC-H datas - [TiFlash compatibility](/tiflash/tiflash-compatibility.md) + +## Related resources + + + + From f19874f959340c0a2777887266f9dc4d23949dbd Mon Sep 17 00:00:00 2001 From: Aolin Date: Wed, 13 May 2026 16:56:09 +0800 Subject: [PATCH 2/6] update duration Co-authored-by: Aolin --- overview.md | 1 + tidb-cloud/tidb-cloud-intro.md | 1 + 2 files changed, 2 insertions(+) diff --git a/overview.md b/overview.md index 62b73b406221e..55f2e60f1d898 100644 --- a/overview.md +++ b/overview.md @@ -77,5 +77,6 @@ The following video introduces key features of TiDB. link="https://www.youtube.com/watch?v=aWBNNPm21zg" imgSrc="https://i.ytimg.com/vi/aWBNNPm21zg/hqdefault.jpg" author="PingCAP" + duration="2 mins" /> diff --git a/tidb-cloud/tidb-cloud-intro.md b/tidb-cloud/tidb-cloud-intro.md index 9ad9e740e8164..abfb9c39dadbf 100644 --- a/tidb-cloud/tidb-cloud-intro.md +++ b/tidb-cloud/tidb-cloud-intro.md @@ -165,5 +165,6 @@ TiDB Cloud provides the following deployment options: link="https://www.youtube.com/watch?v=skCV9BEmjbo" imgSrc="https://i.ytimg.com/vi/skCV9BEmjbo/hqdefault.jpg" author="PingCAP" + duration="3 mins" /> From 678bf887aff98caf3b22df2c6c30268006d05420 Mon Sep 17 00:00:00 2001 From: Aolin Date: Wed, 13 May 2026 17:04:07 +0800 Subject: [PATCH 3/6] Apply suggestions from code review Co-authored-by: Aolin --- tidb-cloud/tidb-cloud-intro.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tidb-cloud/tidb-cloud-intro.md b/tidb-cloud/tidb-cloud-intro.md index abfb9c39dadbf..6a3f1f77bae36 100644 --- a/tidb-cloud/tidb-cloud-intro.md +++ b/tidb-cloud/tidb-cloud-intro.md @@ -143,6 +143,14 @@ TiDB Cloud provides the following deployment options: ## Related resources + - From 383ad23a70d667e2b4e355a8b91336982f61bbd5 Mon Sep 17 00:00:00 2001 From: Aolin Date: Thu, 14 May 2026 10:17:24 +0800 Subject: [PATCH 4/6] Apply suggestions from code review Co-authored-by: Aolin --- tidb-cloud/tidb-x-architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tidb-cloud/tidb-x-architecture.md b/tidb-cloud/tidb-x-architecture.md index 6662d1fbe6508..ed79e45386640 100644 --- a/tidb-cloud/tidb-x-architecture.md +++ b/tidb-cloud/tidb-x-architecture.md @@ -179,7 +179,7 @@ The following table summarizes the architectural transitions from classic TiDB t /> Date: Thu, 14 May 2026 10:19:07 +0800 Subject: [PATCH 5/6] Apply suggestions from code review Co-authored-by: Aolin --- tiflash/tiflash-overview.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tiflash/tiflash-overview.md b/tiflash/tiflash-overview.md index bf03adba475d2..7b95c2d4091d5 100644 --- a/tiflash/tiflash-overview.md +++ b/tiflash/tiflash-overview.md @@ -121,16 +121,3 @@ To experience the whole process from importing data to querying in a TPC-H datas - [TiFlash compatibility](/tiflash/tiflash-compatibility.md) - -## Related resources - - - - From 6fedab5eb8d8a7bb831636f3a124628165565f09 Mon Sep 17 00:00:00 2001 From: Aolin Date: Thu, 14 May 2026 10:24:50 +0800 Subject: [PATCH 6/6] fix: collapse blocks to a single line --- ai/concepts/vector-search-overview.md | 9 +------ br/backup-and-restore-overview.md | 8 +----- choose-index.md | 8 +----- clustered-indexes.md | 8 +----- dm/migrate-data-using-dm.md | 8 +----- dumpling-overview.md | 8 +----- get-started-with-tidb-lightning.md | 8 +----- integration-overview.md | 9 +------ overview.md | 9 +------ partitioned-table.md | 8 +----- production-deployment-using-tiup.md | 8 +----- releases/release-8.5.0.md | 9 +------ .../sync-diff-inspector-overview.md | 8 +----- ticdc/ticdc-overview.md | 8 +----- tidb-cloud/branch-overview.md | 9 +------ .../integrate-tidbcloud-with-airbyte.md | 9 +------ tidb-cloud/tidb-cloud-intro.md | 27 +++---------------- tidb-cloud/tidb-x-architecture.md | 26 +++--------------- tidb-resource-control-ru-groups.md | 8 +----- 19 files changed, 23 insertions(+), 172 deletions(-) diff --git a/ai/concepts/vector-search-overview.md b/ai/concepts/vector-search-overview.md index 41f56b445be9a..b4303cb6179e0 100644 --- a/ai/concepts/vector-search-overview.md +++ b/ai/concepts/vector-search-overview.md @@ -76,12 +76,5 @@ To get started with TiDB Vector Search, see the following documents: ## Related resources - + diff --git a/br/backup-and-restore-overview.md b/br/backup-and-restore-overview.md index 0bb3cd872a265..3900da945925d 100644 --- a/br/backup-and-restore-overview.md +++ b/br/backup-and-restore-overview.md @@ -181,11 +181,5 @@ The following table lists the compatibility matrix for log backups. Note that al ## Related resources - + diff --git a/choose-index.md b/choose-index.md index 0be906c4bf945..7f570c05952a0 100644 --- a/choose-index.md +++ b/choose-index.md @@ -691,11 +691,5 @@ mysql> SHOW WARNINGS; -- cannot hit plan cache since the JSON_CONTAINS predicat ## Related resources - + diff --git a/clustered-indexes.md b/clustered-indexes.md index 69126f05d3b11..8e516b6871eea 100644 --- a/clustered-indexes.md +++ b/clustered-indexes.md @@ -219,11 +219,5 @@ ERROR 8216 (HY000): Invalid auto random: column a is not the integer primary key ## Related resources - + diff --git a/dm/migrate-data-using-dm.md b/dm/migrate-data-using-dm.md index 8936e70049ff4..e645735a9e89b 100644 --- a/dm/migrate-data-using-dm.md +++ b/dm/migrate-data-using-dm.md @@ -192,11 +192,5 @@ While the DM cluster is running, DM-master, DM-worker, and dmctl output the moni ## Related resources - + diff --git a/dumpling-overview.md b/dumpling-overview.md index 3d9d2a665a513..2074b8926e256 100644 --- a/dumpling-overview.md +++ b/dumpling-overview.md @@ -454,11 +454,5 @@ For example, using `--output-filename-template '{{define "table"}}{{fn .Table}}. ## Related resources - + diff --git a/get-started-with-tidb-lightning.md b/get-started-with-tidb-lightning.md index 3731e2f9cdcee..8bd0a04326907 100644 --- a/get-started-with-tidb-lightning.md +++ b/get-started-with-tidb-lightning.md @@ -117,11 +117,5 @@ For detailed features and usage about TiDB Lightning, refer to [TiDB Lightning O ## Related resources - + diff --git a/integration-overview.md b/integration-overview.md index 75a087b66946c..8f60cd505c9b9 100644 --- a/integration-overview.md +++ b/integration-overview.md @@ -18,12 +18,5 @@ You can use TiCDC to replicate incremental data from TiDB to Apache Kafka, and c ## Related resources - + diff --git a/overview.md b/overview.md index 55f2e60f1d898..9df7437ed4ad0 100644 --- a/overview.md +++ b/overview.md @@ -71,12 +71,5 @@ The following video introduces key features of TiDB. ## Related resources - + diff --git a/partitioned-table.md b/partitioned-table.md index 4c4f3e6e7cce0..0467ed7d6a086 100644 --- a/partitioned-table.md +++ b/partitioned-table.md @@ -2106,11 +2106,5 @@ Currently, `static` pruning mode does not support plan cache for both prepared a ## Related resources - + diff --git a/production-deployment-using-tiup.md b/production-deployment-using-tiup.md index d669709ec03df..3588fe69ebfa3 100644 --- a/production-deployment-using-tiup.md +++ b/production-deployment-using-tiup.md @@ -402,11 +402,5 @@ If you want to scale out or scale in your TiDB cluster without interrupting the ## Related resources - + diff --git a/releases/release-8.5.0.md b/releases/release-8.5.0.md index fe24b3cbad3c3..b1f72ce69f6c8 100644 --- a/releases/release-8.5.0.md +++ b/releases/release-8.5.0.md @@ -447,12 +447,5 @@ We would like to thank the following contributors from the TiDB community: ## Related resources - + diff --git a/sync-diff-inspector/sync-diff-inspector-overview.md b/sync-diff-inspector/sync-diff-inspector-overview.md index c411c17f35ee1..29884cbd9d3b3 100644 --- a/sync-diff-inspector/sync-diff-inspector-overview.md +++ b/sync-diff-inspector/sync-diff-inspector-overview.md @@ -322,11 +322,5 @@ REPLACE INTO `sbtest`.`sbtest99`(`id`,`k`,`c`,`pad`) VALUES (3700000,2501808,'he ## Related resources - + diff --git a/ticdc/ticdc-overview.md b/ticdc/ticdc-overview.md index 97a7ffec49656..addafa72ce750 100644 --- a/ticdc/ticdc-overview.md +++ b/ticdc/ticdc-overview.md @@ -166,11 +166,5 @@ TiCDC only partially supports scenarios involving large transactions in the upst ## Related resources - + diff --git a/tidb-cloud/branch-overview.md b/tidb-cloud/branch-overview.md index 3d7c99ec07a35..0214d1a235bbb 100644 --- a/tidb-cloud/branch-overview.md +++ b/tidb-cloud/branch-overview.md @@ -61,12 +61,5 @@ If you need more quotas, [contact TiDB Cloud Support](/tidb-cloud/tidb-cloud-sup ## Related resources - + diff --git a/tidb-cloud/integrate-tidbcloud-with-airbyte.md b/tidb-cloud/integrate-tidbcloud-with-airbyte.md index a3ef012c384de..21c2801e648a1 100644 --- a/tidb-cloud/integrate-tidbcloud-with-airbyte.md +++ b/tidb-cloud/integrate-tidbcloud-with-airbyte.md @@ -109,12 +109,5 @@ The following steps use TiDB as both a source and a destination. Other connector ## Related resources - + diff --git a/tidb-cloud/tidb-cloud-intro.md b/tidb-cloud/tidb-cloud-intro.md index 6a3f1f77bae36..365cc8d802c4f 100644 --- a/tidb-cloud/tidb-cloud-intro.md +++ b/tidb-cloud/tidb-cloud-intro.md @@ -143,28 +143,7 @@ TiDB Cloud provides the following deployment options: ## Related resources - - - + + + diff --git a/tidb-cloud/tidb-x-architecture.md b/tidb-cloud/tidb-x-architecture.md index ed79e45386640..63bb7fa708d49 100644 --- a/tidb-cloud/tidb-x-architecture.md +++ b/tidb-cloud/tidb-x-architecture.md @@ -161,27 +161,7 @@ The following table summarizes the architectural transitions from classic TiDB t ## Related resources - - - + + + diff --git a/tidb-resource-control-ru-groups.md b/tidb-resource-control-ru-groups.md index 7c911ccf7e4dd..eae1bea063367 100644 --- a/tidb-resource-control-ru-groups.md +++ b/tidb-resource-control-ru-groups.md @@ -444,11 +444,5 @@ The resource control feature does not impact the regular usage of data import, e ## Related resources - +