Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 2.04 KB

tidb-binlog-deployment-topology.md

File metadata and controls

43 lines (29 loc) · 2.04 KB
title summary category
TiDB Binlog 部署拓扑
介绍如何在部署最小拓扑集群的基础上,同时部署 TiDB Binlog。
how-to

TiDB Binlog 部署拓扑

本文介绍在部署最小拓扑集群的基础上,同时部署 TiDB Binlog。TiDB Binlog 是目前广泛使用的增量同步组件,可提供准实时备份和同步功能。

拓扑信息

实例 个数 物理机配置 IP 配置
TiDB 3 16 VCore 32 GB 10.0.1.1
10.0.1.2
10.0.1.3
默认端口配置;
开启 enable_binlog;
开启 ignore-error
PD 3 4 VCore 8 GB 10.0.1.4
10.0.1.5
10.0.1.6
默认端口配置
TiKV 3 16 VCore 32 GB 10.0.1.7
10.0.1.8
10.0.1.9
默认端口配置
Pump 3 8 VCore 16GB 10.0.1.1
10.0.1.7
10.0.1.8
默认端口配置;
设置 GC 时间 7 天
Drainer 1 8 VCore 16GB 10.0.1.12 默认端口配置;
设置默认初始化 commitTS -1 为最近的时间戳
配置下游目标 TiDB 10.0.1.12:4000

拓扑模版

简单 TiDB Binlog 配置模板

详细 TiDB Binlog 配置模板

关键参数介绍

拓扑配置模版的关键参数如下:

  • binlog.enable: true

    开启 binlog 服务,默认为 false。

  • binlog.ignore-error: true

    高可用场景建议开启,如果设置为 true,发生错误时,TiDB 会停止写入 binlog,并且在监控项 tidb_server_critical_error_total 上计数加 1;如果设置为 false,一旦写入 binlog 失败,会停止整个 TiDB 的服务。

注意:

  • 编辑配置文件模版时,如无需自定义端口或者目录,仅修改 IP 即可。

  • 无需手动创建配置文件中的 tidb 用户,TiUP cluster 组件会在部署主机上自动创建该用户。可以自定义用户,也可以和中控机的用户保持一致。