From 0c7351e6282d8a69edda684b06865f130c68ee4d Mon Sep 17 00:00:00 2001 From: TomShawn <41534398+TomShawn@users.noreply.github.com> Date: Tue, 24 Aug 2021 15:09:10 +0800 Subject: [PATCH] ticdc: fix wording --- TOC.md | 2 +- ticdc/manage-ticdc.md | 2 +- ticdc/ticdc-open-api.md | 12 ++++++------ ticdc/ticdc-overview.md | 2 +- tidb-configuration-file.md | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/TOC.md b/TOC.md index 625516bc6e07e..c46cf02d04d71 100644 --- a/TOC.md +++ b/TOC.md @@ -209,7 +209,7 @@ + [Maintain](/ticdc/manage-ticdc.md) + [Troubleshoot](/ticdc/troubleshoot-ticdc.md) + [Monitor](/ticdc/monitor-ticdc.md) - + [TiCDC Open API](/ticdc/ticdc-open-api.md) + + [TiCDC OpenAPI](/ticdc/ticdc-open-api.md) + [TiCDC Open Protocol](/ticdc/ticdc-open-protocol.md) + [Integrate TiDB with Confluent Platform](/ticdc/integrate-confluent-using-ticdc.md) + [Glossary](/ticdc/ticdc-glossary.md) diff --git a/ticdc/manage-ticdc.md b/ticdc/manage-ticdc.md index cbf6efa0fdc47..6dae440c2ee3a 100644 --- a/ticdc/manage-ticdc.md +++ b/ticdc/manage-ticdc.md @@ -8,7 +8,7 @@ aliases: ['/docs/dev/ticdc/manage-ticdc/','/docs/dev/reference/tools/ticdc/manag This document describes how to upgrade TiCDC cluster and modify the configuration of TiCDC cluster using TiUP, and how to manage the TiCDC cluster and replication tasks using the command-line tool `cdc cli`. -You can also use the HTTP interface (the TiCDC Open API feature) to manage the TiCDC cluster and replication tasks. For details, see [TiCDC Open API](/ticdc/ticdc-open-api.md). +You can also use the HTTP interface (the TiCDC OpenAPI feature) to manage the TiCDC cluster and replication tasks. For details, see [TiCDC OpenAPI](/ticdc/ticdc-open-api.md). ## Upgrade TiCDC using TiUP diff --git a/ticdc/ticdc-open-api.md b/ticdc/ticdc-open-api.md index b87f901a3dd7f..a6396f586bce2 100644 --- a/ticdc/ticdc-open-api.md +++ b/ticdc/ticdc-open-api.md @@ -1,19 +1,19 @@ --- -title: TiCDC Open API -summary: Learn how to use the Open API interface to manage the cluster status and data replication. +title: TiCDC OpenAPI +summary: Learn how to use the OpenAPI interface to manage the cluster status and data replication. --- -# TiCDC Open API +# TiCDC OpenAPI > **Warning:** > -> TiCDC Open API is still an experimental feature. It is not recommended to use it in a production environment. +> TiCDC OpenAPI is still an experimental feature. It is not recommended to use it in a production environment. -TiCDC provides the Open API feature for querying and operating the TiCDC cluster, which is similar to the feature of [`cdc cli` tool] (/ticdc/manage-ticdc.md#use-cdc-cli-to-manage-cluster-status-and-data-replication-task). +TiCDC provides the OpenAPI feature for querying and operating the TiCDC cluster, which is similar to the feature of [`cdc cli` tool](/ticdc/manage-ticdc.md#use-cdc-cli-to-manage-cluster-status-and-data-replication-task). -You can use the Open APIs to perform the following maintenance operations on the TiCDC cluster: +You can use the APIs to perform the following maintenance operations on the TiCDC cluster: - [Get the status information of a TiCDC node](#get-the-status-information-of-a-ticdc-node) - [Check the health status of a TiCDC cluster](#check-the-health-status-of-a-ticdc-cluster) diff --git a/ticdc/ticdc-overview.md b/ticdc/ticdc-overview.md index 5f047c78d7e4f..3f61b8083adb4 100644 --- a/ticdc/ticdc-overview.md +++ b/ticdc/ticdc-overview.md @@ -120,7 +120,7 @@ You can either deploy TiCDC along with a new TiDB cluster or add the TiCDC compo Currently, you can use the `cdc cli` tool to manage the status of a TiCDC cluster and data replication tasks. For details, see: - [Use `cdc cli` to manage cluster status and data replication task](/ticdc/manage-ticdc.md#use-cdc-cli-to-manage-cluster-status-and-data-replication-task) -- [Use Open API to manage cluster status and data replication task](/ticdc/ticdc-open-api.md) +- [Use OpenAPI to manage cluster status and data replication task](/ticdc/ticdc-open-api.md) ## Troubleshoot TiCDC diff --git a/tidb-configuration-file.md b/tidb-configuration-file.md index 5c78fed678e55..810f4deb6f4b8 100644 --- a/tidb-configuration-file.md +++ b/tidb-configuration-file.md @@ -375,7 +375,7 @@ Configuration items related to performance. - The maximum number of statements allowed in a single TiDB transaction. - Default value: `5000` -- If a transaction does not roll back or commit after the number of statements exceeds `stmt-count-limit`, TiDB returns the `statement count 5001 exceeds the transaction limitation, autocommit = false` error. This configuration takes effect **only** in the retriable optimistic transaction. If you use the pessimistic transaction or have disabled the transaction retry, the number of statements in a transaction is not limited by this configuration. +- If a transaction does not roll back or commit after the number of statements exceeds `stmt-count-limit`, TiDB returns the `statement count 5001 exceeds the transaction limitation, autocommit = false` error. This configuration takes effect **only** in the retryable optimistic transaction. If you use the pessimistic transaction or have disabled the transaction retry, the number of statements in a transaction is not limited by this configuration. ### `txn-entry-size-limit` New in v5.0