Placement driver for TiKV
Go to file
lhy1024 33d470186d
tests: accelerate testing speed by reducing clusters (Part 1) (#9598)
ref tikv/pd#9596

Signed-off-by: lhy1024 <admin@liudos.us>
2025-08-14 12:42:18 +00:00
.github ci: add GitHub Actions workflows for release-nextgen-20250815 (#9642) 2025-08-11 09:11:15 +00:00
client client: fix tso service discovery (#9595) 2025-07-29 05:36:46 +00:00
cmd/pd-server *: add leak check to the main package (#8043) 2025-07-07 07:58:54 +00:00
conf chore(dashboard): update TiDB Dashboard to v8.4.0-6a0d342d [master] (#8581) 2024-09-05 03:08:52 +00:00
docs *: check file header (#9015) 2025-01-21 03:35:17 +00:00
metrics metrics: fix monitor (#9653) 2025-08-13 08:11:36 +00:00
pkg tests: accelerate testing speed by reducing clusters (Part 1) (#9598) 2025-08-14 12:42:18 +00:00
plugin/scheduler_example util: move keyrange to keyutils (#9321) 2025-05-15 06:06:08 +00:00
scripts test: remove etcd key path test (#9565) 2025-07-21 04:22:25 +00:00
server *: reduce the useless tasks (#9646) 2025-08-12 05:58:36 +00:00
tests tests: accelerate testing speed by reducing clusters (Part 1) (#9598) 2025-08-14 12:42:18 +00:00
tools tests: accelerate testing speed by reducing clusters (Part 1) (#9598) 2025-08-14 12:42:18 +00:00
.deepsource.toml Add deepsource analyze (#3271) 2020-12-15 18:32:26 +08:00
.gitignore core: reset subRegions field in ResetRegionCache (#9658) 2025-08-13 02:20:42 +00:00
.golangci.yml *: enable errcheck in test (#9505) 2025-07-10 09:53:00 +00:00
CHANGELOG.md Remove adjacent region scheduler (#3071) 2020-10-15 14:14:25 +08:00
CONTRIBUTING.md readme: update Go version, wording (#5777) 2022-12-13 17:16:52 +08:00
Dockerfile *: upgrade go to 1.23 (#8637) 2024-10-08 03:29:12 +00:00
LICENSE *: fix the license (#3752) 2021-06-09 11:26:29 +08:00
Makefile *: add leakcheck (#9563) 2025-07-18 06:54:33 +00:00
OWNERS OWNERS: Auto Sync OWNERS files from community membership (#9659) 2025-08-13 08:43:36 +00:00
OWNERS_ALIASES OWNERS: Auto Sync OWNERS files from community membership (#9659) 2025-08-13 08:43:36 +00:00
README.md readme: remove the TSO consistency test status badge (#8815) 2024-11-14 10:11:35 +00:00
codecov.yml tools: remove tidb dependencies (#9436) 2025-06-24 10:12:15 +00:00
errors.toml gc: global GC barriers support (#9340) 2025-08-05 04:07:39 +00:00
go.mod tests: fix stale failpoint (#9573) 2025-07-23 06:46:17 +00:00
go.sum tests: fix stale failpoint (#9573) 2025-07-23 06:46:17 +00:00
pd.code-workspace *: remove the Local TSO test cases (#8810) 2024-11-14 06:41:50 +00:00
tools.go *: add leakcheck (#9563) 2025-07-18 06:54:33 +00:00

README.md

PD

Check Status Build & Test Status GitHub release Go Report Card codecov

PD is the abbreviation for Placement Driver. It manages and schedules TiKV clusters.

PD supports fault-tolerance by embedding etcd.

contribution-map

If you're interested in contributing to PD, see CONTRIBUTING.md. For more contributing information about where to start, click on the contributor icon above.

Build

  1. Make sure Go (version 1.23) is installed.
  2. Use make to install PD. pd-server will be installed in the bin directory.

Usage

PD can be configured using command-line flags. For more information, see PD Configuration Flags.

Single node with default ports

You can run pd-server directly on your local machine. If you want to connect to PD from outside, you can let PD listen on the host IP.

# Set HOST_IP to the address you want to listen on
export HOST_IP="192.168.199.105"

pd-server --name="pd" \
          --data-dir="pd" \
          --client-urls="http://${HOST_IP}:2379" \
          --peer-urls="http://${HOST_IP}:2380" \
          --log-file=pd.log

Using curl to view PD members:

curl http://${HOST_IP}:2379/pd/api/v1/members

{
  "members": [
    {
      "name": "pd",
      "member_id": 15980934438217023866,
      "peer_urls": [
        "http://192.168.199.105:2380"
      ],
      "client_urls": [
        "http://192.168.199.105:2379"
      ],
      "deploy_path": "/",
      "binary_version": "v6.1.3",
      "git_hash": "1a4e975892512a97fb0e5b45c9be69aa76148793"
    }
  ]
}

You can also use httpie to call the API:

http http://${HOST_IP}:2379/pd/api/v1/members

Access-Control-Allow-Headers: accept, content-type, authorization
Access-Control-Allow-Methods: POST, GET, OPTIONS, PUT, DELETE
Access-Control-Allow-Origin: *
Content-Length: 1003
Content-Type: application/json; charset=UTF-8
Date: Mon, 12 Dec 2022 13:46:33 GMT

{
  "members": [
    {
      "name": "pd",
      "member_id": 15980934438217023866,
      "peer_urls": [
        "http://192.168.199.105:2380"
      ],
      "client_urls": [
        "http://192.168.199.105:2379"
      ],
      "deploy_path": "/",
      "binary_version": "v6.1.3",
      "git_hash": "1a4e975892512a97fb0e5b45c9be69aa76148793"
    }
  ]
}

Docker

You can choose one of the following methods to get a PD image:

  • Build locally:

    docker build -t pingcap/pd .
    
  • Pull from Docker Hub:

    docker pull pingcap/pd
    

Then you can run a single node using the following command:

# Set HOST_IP to the address you want to listen on
export HOST_IP="192.168.199.105"

docker run -d -p 2379:2379 -p 2380:2380 --name pd pingcap/pd \
          --name="pd" \
          --data-dir="pd" \
          --client-urls="http://0.0.0.0:2379" \
          --advertise-client-urls="http://${HOST_IP}:2379" \
          --peer-urls="http://0.0.0.0:2380" \
          --advertise-peer-urls="http://${HOST_IP}:2380" \
          --log-file=pd.log

Cluster

As a component of the TiKV project, PD needs to run with TiKV to work. The cluster can also include TiDB to provide SQL services. For detailed instructions to deploy a cluster, refer to Deploy a TiDB Cluster Using TiUP or TiDB on Kubernetes Documentation.