作者: cchouqiang 原文来源:https://tidb.net/blog/aa7aa7b8
背景
数据库对于企业来说是至关重要的,但是由于某些原因,会导致数据库的不可用,此时需要数据库自身的恢复能力,快速恢复数据库,恢复业务可用。
数据库大多采用三副本、两地三中心架构,但在极端场景下,需要数据库自恢复能力,不要求数据的一致性,但是要求尽快恢复业务。
恢复工具介绍
对于 tidb 数据库来说,最重要的组件有 tidb、tikv、pd;其中 tidb 为计算节点,是不存储业务数据的,当出现问题时,可以扩容节点来解决;pd 和 tikv 是会存储数据,当出现问题时,需要通过恢复工具来进行修复。
pd 恢复工具为:pd-recover,官方使用手册如下:
https://docs.pingcap.com/zh/tidb/stable/pd-recover#pd-recover-%E4%BD%BF%E7%94%A8%E6%96%87%E6%A1%A3
tikv 恢复工具为:online unsafe recovery,官方使用手册如下:
https://docs.pingcap.com/zh/tidb/dev/online-unsafe-recovery
灾难恢复场景
tikv 灾难恢复
此前写过一篇关于 tikv 恢复文章,可以参考链接:
https://tidb.net/blog/75f7933e
pd 灾难恢复
本文介绍 pd 最极端场景恢复,pd 所有 data 和 deploy 目录全部损坏恢复
(一)查看集群状态,tiup cluster display tidb-test
(二)模拟所有 PD data、deploy 目录损坏
(三)修复 PD 数据,查找 cluster id 和 alloc-id
参考文档:https://docs.pingcap.com/zh/tidb/dev/pd-recover#pd-recover-%E4%BD%BF%E7%94%A8%E6%96%87%E6%A1%A3
获取 cluster id
一般在 PD、TiKV 或 TiDB 的日志中都可以获取 Cluster ID。你可以直接在服务器上查看日志以获取 Cluster ID。
1. 从 PD 日志获取 Cluster ID(推荐)
使用以下命令,从 PD 日志中获取 Cluster ID:
cat {{/path/to}}/pd.log | grep "init cluster id"
[INFO] [server.go:212] ["init cluster id"] [cluster-id=6747551640615446306]
复制代码
2. 从 TiDB 日志获取 Cluster ID
使用以下命令,从 TiDB 日志中获取 Cluster ID:
cat {{/path/to}}/tidb.log | grep "init cluster id"
client.go:161: [info] [pd] init cluster id 6747551640615446306
复制代码
3. 从 TiKV 日志获取 Cluster ID
使用以下命令,从 TiKV 日志中获取 Cluster ID:
cat {{/path/to}}/tikv.log | grep "connect to PD cluster"
[INFO] [tikv-server.rs:464] ["connect to PD cluster 6747551640615446306"]
复制代码
获取已分配 ID alloc-id
在指定已分配 ID 时,需指定一个比当前最大的已分配 ID 更大的值。可以从监控中获取已分配 ID,也可以直接在服务器上查看日志,如果无法确定最大的 alloc-id,则可以根据预估设置一个较高的值,如设置 100 亿,alloc-id 是 uint64 位,最大可分配 id 为 18446744073709551615。
1. 从监控中获取已分配 ID(推荐)
要从监控中获取已分配的 ID,需要确保你所查看的监控指标是上一任 PD Leader 的指标。可从 PD Dashboard 中 Current ID allocation 面板获取最大的已分配 ID。
2. 从 PD 日志获取已分配 ID
要从 PD 日志中获取分配的 ID,需要确保你所查看的日志是上一任 PD Leader 的日志。运行以下命令获取最大的已分配 ID:
cat {{/path/to}}/pd*.log | grep "idAllocator allocates a new id" | awk -F'=' '{print $2}' | awk -F']' '{print $1}' | sort -r -n | head -n 1
复制代码
3. 从 TiKV 日志中获取已分配 ID
如无法通过监控和 PD 日志查看 alloc-id,则可以通过查看所有 TiKV 日志查看最大的 region/peer id
cat tikv.log |grep "insert new region" cat tikv.log |grep "notify pd with change peer region"
复制代码
(四)强制缩容任意两个 PD,只保留一个 PD
tiup cluster scale-in tidb-test -N pdip:2379,pdip:2379 --force
......
Start pdip success
+ [ Serial ] - UpdateTopology: cluster=tidb-test
{"level":"warn","ts":"2021-10-09T16:35:22.598+0800","logger":"etcd-client","caller":"v3@v3.5.0/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc0001b6700/#initially=[ip:2379]","attempt":0,"error":"rpc error: code = DeadlineExceeded desc = context deadline exceeded"}
Error: context deadline exceeded
Verbose debug logs has been written to /data/tidb/.tiup/logs/tiup-cluster-debug-2021-10-09-16-35-22.log.
Error: run `/data/tidb/.tiup/components/cluster/v1.5.6/tiup-cluster` (wd:/data/tidb/.tiup/data/SlKYAsl) failed: exit status 1
复制代码
虽然会有报错,但是还是强制删除两个节点。
(五)根据 display 信息手动创建 pd deploy 目录
cd /data/tidb/tidb-deploy/pd-2379
mkdir bin
mkdir log
mkdir conf
mkdir scripts
复制代码
(六)恢复 PD-server
通过集群安装介质包,解压缩 pd-server,并拷贝到 bin 目录下(注意版本)
cd /home/tidb/tidb-community-server-v5.2.1-linux-amd64
tar -zxvf pd-recover-v5.2.1-linux-amd64.tar.gz
cp pd-server /data/tidb/tidb-deploy/pd-2379/bin/
复制代码
权限:755
(七)恢复 conf
cd /data/tidb/tidb-deploy/pd-2379/conf
vi pd.toml
# WARNING: This file is auto-generated. Do not edit! All your modification will be overwritten!
# You can use 'tiup cluster edit-config' and 'tiup cluster reload' to update the configuration
# All configuration items you want to change can be added to:
# server_configs:
# pd:
# aa.b1.c3: value
# aa.b2.c4: value
[replication]
isolation-level = "rack"
location-labels = ["rack", "host"]
复制代码
pd.toml 的配置可在.tiup 下的 meta 文件查看
cat /home/tidb/.tiup/storage/cluster/clusters/tidb-test/meta.yaml
复制代码
(八)恢复 scripts
注意和上面恢复内容一致,删除 –initial-cluster 中已踢掉的两个 PD 节点信息,其他信息可参考 meta 文件
cd /data/tidb/tidb-deploy/pd-2379/scripts
vi run_pd.sh
#!/bin/bash
set -e
# WARNING: This file was auto-generated. Do not edit!
# All your edit might be overwritten!
DEPLOY_DIR=/tidb-data1/tidb-deploy/pd-2379
cd "${DEPLOY_DIR}" || exit 1
exec env GODEBUG=madvdontneed=1 bin/pd-server \
--name="pd-1-2379" \
--client-urls="http://0.0.0.0:2379" \
--advertise-client-urls="http://pdip:2379" \
--peer-urls="http://0.0.0.0:2380" \
--advertise-peer-urls="http://pdip:2380" \
--data-dir="/tidb-data1/tidb-data/pd-2379" \
--initial-cluster="pd-1-2379=http://pdip:2380" \
--config=conf/pd.toml \
--log-file="/tidb-data1/tidb-deploy/pd-2379/log/pd.log" 2>> "/tidb-data1/tidb-deploy/pd-2379/log/pd_stderr.log"
复制代码
权限:755
(九)测试 scripts
为防止 start pd 失败,可先通过./ 方式测试 run_pd.sh 脚本配置是否正常,如能启动 pd 说明正常,其他部分承接上面 PD 恢复内容
(十)启动新 pd 集群
启动新 pd,并禁用所有 pd 调度(如果 alloc-id 是预估的比较大的值)
tiup cluster start tidb-test -N pdip:2379
tiup cluster display tidb-test
复制代码
tiup ctl:v5.2.1 pd -u http://127.0.0.1:2379 -i
config show
"schedule": {
"enable-cross-table-merge": "true",
"enable-joint-consensus": "true",
"high-space-ratio": 0.7,
"hot-region-cache-hits-threshold": 3,
"hot-region-schedule-limit": 4,
"hot-regions-reserved-days": 7,
"hot-regions-write-interval": "10m0s",
"leader-schedule-limit": 4,
"leader-schedule-policy": "count",
"low-space-ratio": 0.8,
"max-merge-region-keys": 200000,
"max-merge-region-size": 20,
"max-pending-peer-count": 64,
"max-snapshot-count": 64,
"max-store-down-time": "30m0s",
"max-store-preparing-time": "48h0m0s",
"merge-schedule-limit": 8,
"patrol-region-interval": "10ms",
"region-schedule-limit": 2048,
"region-score-formula-version": "v2",
"replica-schedule-limit": 64,
"split-merge-interval": "1h0m0s",
"tolerant-size-ratio": 0
}
}
config set region-schedule-limit 0
config set leader-schedule-limit 0
复制代码
(十一)PD-Recover
根据上面获取的 cluster-id 和 alloc-id 对 pd 进行恢复,注意:alloc-id 值如果小于集群现有已分配的 region id/store id,则可能会导致数据被覆盖。
执行 pd-recover 设置新 PD 集群的 cluster-id 与 alloc-id
tiup pd-recover -endpoints http://pdip:2379 -cluster-id 7016973815389845033 -alloc-id 6000
Starting component `pd-recover`: /data/tidb/.tiup/components/pd-recover/v5.2.1/pd-recover -endpoints http://pdip:2379 -cluster-id 7016973815389845033 -alloc-id 6000
recover success! please restart the PD cluster
复制代码
(十二)重启 PD 集群,并执行扩容
tiup cluster restart tidb-test -N pdip:2379
tiup cluster display tidb-test
tiup cluster scale-out pd.yaml
tiup cluster reload tidb-test -R pd
复制代码
(十三)恢复 PD 调度,检查 PD label 并重启集群
tiup ctl:v5.2.1 pd -u http://127.0.0.1:2379 -i
config show
"schedule": {
"enable-cross-table-merge": "true",
"enable-joint-consensus": "true",
"high-space-ratio": 0.7,
"hot-region-cache-hits-threshold": 3,
"hot-region-schedule-limit": 4,
"hot-regions-reserved-days": 7,
"hot-regions-write-interval": "10m0s",
"leader-schedule-limit": 0,
"leader-schedule-policy": "count",
"low-space-ratio": 0.8,
"max-merge-region-keys": 200000,
"max-merge-region-size": 20,
"max-pending-peer-count": 64,
"max-snapshot-count": 64,
"max-store-down-time": "30m0s",
"max-store-preparing-time": "48h0m0s",
"merge-schedule-limit": 8,
"patrol-region-interval": "10ms",
"region-schedule-limit": 0,
"region-score-formula-version": "v2",
"replica-schedule-limit": 64,
"split-merge-interval": "1h0m0s",
"tolerant-size-ratio": 0
}
}
config set region-schedule-limit 2048
config set leader-schedule-limit 4
config show
{
"replication": {
"enable-placement-rules": "true",
"enable-placement-rules-cache": "false",
"isolation-level": "",
"location-labels": "rack,host",
"max-replicas": 3,
"strictly-match-label": "false"
},
config set location-labels rack,host
复制代码
最后重启集群
tiup cluster restart tidb-test
复制代码
多个组件损坏场景
tidb 数据库若出现多个组件同时损坏,需要同时用到 pd-recover 和 online unsafe recovery 来进行恢复,下面我对多个组件同时损坏的场景进行总结:
tikv、pd 都是 3 个节点
总结和思考
1、pd 集群只是存储元数据信息,并且是通过 tikv 心跳上报,故 pd 集群的所有数据丢失后,整个 tidb 集群可以通过重建 pd 集群修复;
2、重建 pd 集群需要知道 pd 老集群的 cluster-id 和 alloc-id,日常备份这两个值即可。
3、日常备份是非常重要的,在极端场景需要用到备份数据来进行恢复。
评论