Skip to content

Commit

Permalink
tools: add cluster version command in pd-control (#812)
Browse files Browse the repository at this point in the history
  • Loading branch information
nolouch authored and disksing committed Jul 26, 2018
1 parent df0298a commit dd76020
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tools/pd-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ export PD_ADDR=http://127.0.0.1:2379
"max-replicas": 3,
"location-labels": ""
}
>> config show cluster-version // 显示目前集群版本,是目前集群 TiKV 节点的最低版本,并不对应 binary 的版本
"2.0.0"
```

`max-snapshot-count` 控制单个 store 最多同时接收或发送的 snapshot 数量,调度受制于这个配置来防止抢占正常业务的资源。
Expand Down Expand Up @@ -255,6 +257,13 @@ config set high-space-ratio 0.5 // 设置空间充裕阈值为 0.5
config set disable-raft-learner true // 关闭 raft learner 功能
```

`cluster-version` 集群的版本,用于控制某些 Feature 是否开启,处理兼容性问题。
通常是集群正常运行的所有 TiKV 节点中的最低版本,需要回滚到更低的版本时才进行手动设置。

```bash
config set cluster-version 1.0.8 // 设置 cluster version 为 1.0.8
```

`disable-remove-down-replica` 用于关闭自动删除 DownReplica 的特性。
当设置为 true 时,PD 不会自动清理宕机状态的副本。

Expand Down

0 comments on commit dd76020

Please sign in to comment.