aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_cluster_raft_remove.go
diff options
context:
space:
mode:
authorKonstantin Lebedev <9497591+kmlebedev@users.noreply.github.com>2022-04-11 10:50:01 +0500
committerKonstantin Lebedev <9497591+kmlebedev@users.noreply.github.com>2022-04-11 10:50:01 +0500
commit931cb9e5818b202c3855321c9b12a6149d121ffa (patch)
treed3ef08ee15dd8fe05e6ce8f008dd2f6e472a6167 /weed/shell/command_cluster_raft_remove.go
parentd2fe0fae33f66e356cadd6096daa24d37e87df6d (diff)
downloadseaweedfs-931cb9e5818b202c3855321c9b12a6149d121ffa.tar.xz
seaweedfs-931cb9e5818b202c3855321c9b12a6149d121ffa.zip
use "cluster.raft.{ps,add,remove}"
Diffstat (limited to 'weed/shell/command_cluster_raft_remove.go')
-rw-r--r--weed/shell/command_cluster_raft_remove.go56
1 files changed, 56 insertions, 0 deletions
diff --git a/weed/shell/command_cluster_raft_remove.go b/weed/shell/command_cluster_raft_remove.go
new file mode 100644
index 000000000..532a1469c
--- /dev/null
+++ b/weed/shell/command_cluster_raft_remove.go
@@ -0,0 +1,56 @@
+package shell
+
+import (
+ "context"
+ "flag"
+ "fmt"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "io"
+)
+
+func init() {
+ Commands = append(Commands, &commandRaftServerRemove{})
+}
+
+type commandRaftServerRemove struct {
+}
+
+func (c *commandRaftServerRemove) Name() string {
+ return "cluster.raft.remove"
+}
+
+func (c *commandRaftServerRemove) Help() string {
+ return `remove a server from the raft cluster
+
+ Example:
+ cluster.raft.remove -id <server_name>
+`
+}
+
+func (c *commandRaftServerRemove) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
+
+ raftServerAddCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
+ serverId := raftServerAddCommand.String("id", "", "server id")
+ if err = raftServerAddCommand.Parse(args); err != nil {
+ return nil
+ }
+
+ if *serverId == "" {
+ return fmt.Errorf("empty server id")
+ }
+
+ err = commandEnv.MasterClient.WithClient(false, func(client master_pb.SeaweedClient) error {
+ _, err := client.RaftRemoveServer(context.Background(), &master_pb.RaftRemoveServerRequest{
+ Id: *serverId,
+ Force: true,
+ })
+ if err != nil {
+ return fmt.Errorf("raft remove server: %v", err)
+ }
+ println("removed server", *serverId)
+ return nil
+ })
+
+ return err
+
+}