PingKai Logo下载

PD 微服务部署拓扑

本文介绍在部署最小拓扑集群的基础上,部署 PD 微服务的拓扑结构。

拓扑信息

实例个数物理机配置IP配置
TiDB216 VCore 32GB * 110.0.1.1
10.0.1.2
默认端口
全局目录配置
PD34 VCore 8GB * 110.0.1.3
10.0.1.4
10.0.1.5
默认端口
全局目录配置
TSO24 VCore 8GB * 110.0.1.6
10.0.1.7
默认端口
全局目录配置
Scheduling24 VCore 8GB * 110.0.1.8
10.0.1.9
默认端口
全局目录配置
TiKV316 VCore 32GB 2TB (nvme ssd) * 110.0.1.10
10.0.1.11
10.0.1.12
默认端口
全局目录配置
Monitoring & Grafana14 VCore 8GB * 1 500GB (ssd)10.0.1.13默认端口
全局目录配置

拓扑模版

简单 PD 微服务配置模版
# # Global variables are applied to all deployments and used as the default value of
# # the deployments if a specific deployment value is missing.
global:
  user: "tidb"
  ssh_port: 22
  deploy_dir: "/tidb-deploy"
  data_dir: "/tidb-data"
  listen_host: 0.0.0.0
  arch: "amd64"
  pd_mode: "ms" # To enable PD microservices, you must specify this field as "ms".

monitored:
  node_exporter_port: 9200
  blackbox_exporter_port: 9215

# # Specifies the configuration of PD servers.
pd_servers:
  - host: 10.0.1.3
  - host: 10.0.1.4
  - host: 10.0.1.5

# # Specifies the configuration of TiDB servers.
tidb_servers:
  - host: 10.0.1.1
  - host: 10.0.1.2

# # Specifies the configuration of TiKV servers.
tikv_servers:
  - host: 10.0.1.10
  - host: 10.0.1.11
  - host: 10.0.1.12

# # Specifies the configuration of TSO servers.
tso_servers:
  - host: 10.0.1.6
  - host: 10.0.1.7

# # Specifies the configuration of Scheduling servers.
scheduling_servers:
  - host: 10.0.1.8
  - host: 10.0.1.9

# # Specifies the configuration of Prometheus servers.
monitoring_servers:
  - host: 10.0.1.13

# # Specifies the configuration of Grafana servers.
grafana_servers:
  - host: 10.0.1.13

以上 TiDB 集群拓扑文件中,详细的配置项说明见通过 TiUP 部署平凯数据库集群的拓扑文件配置

关键参数介绍

  • tso_servers 实例级别配置 host 目前只支持 IP 地址,不支持域名。
  • TSO 具体的参数配置介绍可参考 TSO 参数配置
  • scheduling_servers 实例级别配置 host 目前只支持 IP 地址,不支持域名。
  • Scheduling 具体的参数配置介绍可参考 Scheduling 参数配置