package shell import ( "context" "flag" "io" "github.com/seaweedfs/seaweedfs/weed/pb" "github.com/seaweedfs/seaweedfs/weed/storage/needle" ) func init() { Commands = append(Commands, &commandVolumeDelete{}) } type commandVolumeDelete struct { } func (c *commandVolumeDelete) Name() string { return "volume.delete" } func (c *commandVolumeDelete) Help() string { return `delete a live volume from one volume server volume.delete -node -volumeId volume.delete -node -volumeId -timeout 30s This command deletes a volume from one volume server. The option "-timeout" fails the command if the volume server does not respond in time. ` } func (c *commandVolumeDelete) HasTag(CommandTag) bool { return false } func (c *commandVolumeDelete) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) { volDeleteCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError) volumeIdInt := volDeleteCommand.Int("volumeId", 0, "the volume id") nodeStr := volDeleteCommand.String("node", "", "the volume server :") timeout := volDeleteCommand.Duration("timeout", 0, "wall-clock cap on the deletion; 0 = no timeout") if err = volDeleteCommand.Parse(args); err != nil { return nil } if err = commandEnv.confirmIsLocked(args); err != nil { return } sourceVolumeServer := pb.ServerAddress(*nodeStr) volumeId := needle.VolumeId(*volumeIdInt) ctx := context.Background() if *timeout > 0 { var cancel context.CancelFunc ctx, cancel = context.WithTimeout(ctx, *timeout) defer cancel() } return deleteVolume(ctx, commandEnv.option.GrpcDialOption, volumeId, sourceVolumeServer, false, false) }