Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use scale-in to manually remove a TiFlash node (#9977) #9985

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions scale-tidb-using-tiup.md
Original file line number Diff line number Diff line change
Expand Up @@ -411,12 +411,12 @@ In special cases (such as when a node needs to be forcibly taken down), or if th

4. Manually delete TiFlash data files (the location can be found in the `data_dir` directory under the TiFlash configuration of the cluster topology file).

5. Manually update TiUP's cluster configuration file (delete the information of the TiFlash node that goes down in edit mode).
5. Delete information about the TiFlash node that goes down from the cluster topology using the following command:

{{< copyable "shell-regular" >}}

```shell
tiup cluster edit-config <cluster-name>
tiup cluster scale-in <cluster-name> --node <pd_ip>:<pd_port> --force
```

> **Note:**
Expand Down