title | summary | aliases | ||
---|---|---|---|---|
PD Recover User Guide |
Use PD Recover to recover a PD cluster which cannot start or provide services normally. |
|
PD Recover is a disaster recovery tool of PD, used to recover the PD cluster which cannot start or provide services normally.
- Go Version 1.13 or later is required because the Go modules are used.
- In the root directory of the PD project, use the
make pd-recover
command to compile and generatebin/pd-recover
.
Note:
Generally, you do not need to compile source code because the PD Control tool already exists in the released binary or Docker. However, developer users can refer to the instructions above for compiling source code.
To download the latest version of PD Recover, directly download the TiDB package, because PD Recover is included in the TiDB package.
Package name | OS | Architecture | SHA256 checksum |
---|---|---|---|
https://download.pingcap.org/tidb-{version}-linux-amd64.tar.gz (pd-recover) |
Linux | amd64 | https://download.pingcap.org/tidb-{version}-linux-amd64.sha256 |
Note:
{version}
indicates the version number of TiDB. For example, if{version}
isv4.0.0
, the package download link ishttps://download.pingcap.org/tidb-v4.0.0-linux-amd64.tar.gz
. You can also download the latest unpublished version by replacing{version}
withlatest
.
This section describes how to use PD Recover to recover a PD cluster.
The cluster ID can be obtained from the log of PD, TiKV or TiDB. To get the cluster ID, you can view the log directly on the server.
To get the cluster ID from the PD log, run the following command:
{{< copyable "shell-regular" >}}
cat {{/path/to}}/pd.log | grep "init cluster id"
[2019/10/14 10:35:38.880 +00:00] [INFO] [server.go:212] ["init cluster id"] [cluster-id=6747551640615446306]
...
To get the cluster ID from the TiDB log, run the following command:
{{< copyable "shell-regular" >}}
cat {{/path/to}}/tidb.log | grep "init cluster id"
2019/10/14 19:23:04.688 client.go:161: [info] [pd] init cluster id 6747551640615446306
...
To get the cluster ID from the TiKV log, run the following command:
{{< copyable "shell-regular" >}}
cat {{/path/to}}/tikv.log | grep "connect to PD cluster"
[2019/10/14 07:06:35.278 +00:00] [INFO] [tikv-server.rs:464] ["connect to PD cluster 6747551640615446306"]
...
The allocated ID value you specify must be larger than the currently largest allocated ID value. To get allocated ID, you can either get it from the monitor, or view the log directly on the server.
To get allocated ID from the monitor, you need to make sure that the metrics you are viewing are the metrics of the last PD leader, and you can get the largest allocated ID from the Current ID allocation panel in PD dashboard.
To get the allocated ID from the PD log, you need to make sure that the log you are viewing is the log of the last PD leader, and you can get the maximum allocated ID by running the following command:
{{< copyable "shell-regular" >}}
cat {{/path/to}}/pd*.log | grep "idAllocator allocates a new id" | awk -F'=' '{print $2}' | awk -F']' '{print $1}' | sort -r | head -n 1
4000
...
Or you can simply run the above command in all PD servers to find the largest one.
Before deploying a new PD cluster, you need to stop the the existing PD cluster and then delete the previous data directory which is specified by --data-dir
.
{{< copyable "shell-regular" >}}
./pd-recover -endpoints http://10.0.1.13:2379 -cluster-id 6747551640615446306 -alloc-id 10000
When you see the prompted information that the recovery is successful, restart the whole cluster.
When a PD cluster is created, a new cluster ID is generated. You can determine the cluster ID of the old cluster by viewing the log.
The error dial tcp 10.0.1.13:2379: connect: connection refused
is returned when executing pd-recover
The PD service is required when you execute pd-recover
. Deploy and start the PD cluster before you use PD Recover.