Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions TOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
- [定位慢查询](/how-to/maintain/identify-abnormal-queries/identify-slow-queries.md)
- [定位消耗系统资源多的查询](/how-to/maintain/identify-abnormal-queries/identify-expensive-queries.md)
+ 扩容缩容
- [使用 TiUP 扩容缩容](/how-to/scale/with-tiup.md)
- [使用 Ansible 扩容缩容](/how-to/scale/with-ansible.md)
+ 升级
- [使用 TiUP 升级(推荐)](/how-to/upgrade/using-tiup.md)
Expand Down
6 changes: 3 additions & 3 deletions how-to/scale/with-tiup.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ tidb_servers:
tiup cluster scale-out <cluster-name> scale-out.yaml
```

预期输出 Scaled cluster `<cluster-name>` in successfully 信息,表示扩容操作成功。
预期输出 Scaled cluster `<cluster-name>` out successfully 信息,表示扩容操作成功。

### 1.3 检查集群状态

Expand Down Expand Up @@ -182,7 +182,7 @@ tiup cluster scale-in <cluster-name> --node 10.0.1.5:20160

其中 `--node` 参数为需要下线节点的 ID。

预期输出 Scaled cluster `<cluster-name>` in successfully 信息,表示扩容操作成功
预期输出 Scaled cluster `<cluster-name>` in successfully 信息,表示缩容操作成功

### 3.3 检查集群状态

Expand All @@ -206,7 +206,7 @@ tiup cluster display <cluster-name>
| 10.0.1.1 | TiKV  |
| 10.0.1.2 | TiKV  |

打开浏览器访问监控平台 <http://10.0.1.5:3200>,监控整个集群和新增节点的状态
打开浏览器访问监控平台 <http://10.0.1.5:3200>,监控整个集群的状态

## 4. 缩容 TiFlash 节点

Expand Down