Skip to content

Commit

Permalink
add tiup deployment prompt in ticdc docs (pingcap#4199)
Browse files Browse the repository at this point in the history
* add tiup deployment docs in ticdc

* fix dead anchor

* Update ticdc/manage-ticdc.md

* add more details in ticdc-overview.md

* Update ticdc/ticdc-overview.md

Co-authored-by: Chunzhu Li <lichunzhu@pingcap.com>

Co-authored-by: Keke Yi <40977455+yikeke@users.noreply.github.com>
Co-authored-by: yikeke <yikeke@pingcap.com>
  • Loading branch information
3 people authored Aug 5, 2020
1 parent 406c43a commit 92445a6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
8 changes: 4 additions & 4 deletions ticdc/manage-ticdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ aliases: ['/docs-cn/dev/ticdc/manage-ticdc/','/docs-cn/dev/reference/tools/ticdc

本文档介绍如何部署 TiCDC 集群,以及如何通过 TiCDC 提供的命令行工具 `cdc cli` 和 HTTP 接口两种方式来管理 TiCDC 集群和同步任务。

## TiCDC 部署
## 部署安装 TiCDC

### 软件和硬件环境推荐配置

Expand All @@ -18,13 +18,13 @@ aliases: ['/docs-cn/dev/ticdc/manage-ticdc/','/docs-cn/dev/reference/tools/ticdc
| Red Hat Enterprise Linux | 7.3 及以上 |
| CentOS | 7.3 及以上 |

| **CPU** | **内存** | **硬盘类型** | **网络** | **实例数量(最低要求)** |
| **CPU** | **内存** | **硬盘类型** | **网络** | **TiCDC 集群实例数量(生产环境最低要求)** |
| --- | --- | --- | --- | --- |
| 16 核+ | 64 GB+ | SSD | 万兆网卡(2 块最佳) | 2 |

更多信息参见 [TiDB 软件和硬件环境建议配置](/hardware-and-software-requirements.md)

### 使用 TiUP 部署
### 使用 TiUP 部署安装 TiCDC

#### 使用 TiUP 部署包含 TiCDC 组件的 TiDB 集群

Expand Down Expand Up @@ -493,7 +493,7 @@ sync-ddl = true

环形同步任务创建步骤如下:

1. 在 TiDB 集群 A,B 和 C 上[启动 TiCDC 组件](#ticdc-部署)
1. 在 TiDB 集群 A,B 和 C 上[启动 TiCDC 组件](#部署安装-ticdc)

{{< copyable "shell-regular" >}}

Expand Down
15 changes: 12 additions & 3 deletions ticdc/ticdc-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ aliases: ['/docs-cn/dev/ticdc/ticdc-overview/','/docs-cn/dev/reference/tools/tic

# TiCDC 简介

> **注意**
> **警告**
>
> TiCDC 目前为实验特性,不建议在生产环境中使用。
Expand Down Expand Up @@ -81,9 +81,18 @@ TiCDC 的系统架构如下图所示:
- 暂不支持 [TiKV Hibernate Region](https://github.com/tikv/tikv/blob/master/docs/reference/configuration/raftstore-config.md#hibernate-region)。TiCDC 会使 Region 无法进入静默状态。
- TiCDC 集群扩容后,不支持将已有的同步表调度到新的 TiCDC 节点中。

## TiCDC 部署和任务管理
## TiCDC 安装和部署

TiCDC 的详细部署和任务管理说明请参考 [TiCDC 运维操作及任务管理](/ticdc/manage-ticdc.md)
在使用 TiUP 部署全新 TiDB 集群时,支持同时部署 TiCDC 组件,只需在 TiUP 启动 TiDB 集群时的配置文件中 [加入 TiCDC 部分](/production-deployment-using-tiup.md#第-3-步编辑初始化配置文件) 即可。

目前也支持使用 TiUP 或 binary 方式在原有 TiDB 集群上新增 TiCDC 组件,详细部署方案请参考 [部署安装 TiCDC](/ticdc/manage-ticdc.md#部署安装-ticdc)

## TiCDC 集群管理和同步任务管理

目前支持使用 `cdc cli` 工具或 HTTP 接口来管理 TiCDC 集群状态和数据同步任务。详细操作见:

- [使用 `cdc cli` 工具来管理集群状态和数据同步](/ticdc/manage-ticdc.md#使用-cdc-cli-工具来管理集群状态和数据同步)
- [使用 HTTP 接口管理集群状态和数据同步](/ticdc/manage-ticdc.md#使用-http-接口管理集群状态和数据同步)

## TiCDC 常见问题

Expand Down

0 comments on commit 92445a6

Please sign in to comment.