mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-08-16 20:26:45 +00:00
* shell: volume.delete accepts a -timeout * shell: volume.move accepts a -timeout
67 lines
1.7 KiB
Go
67 lines
1.7 KiB
Go
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 <volume server host:port> -volumeId <volume id>
|
|
volume.delete -node <volume server host:port> -volumeId <volume id> -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 <host>:<port>")
|
|
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)
|
|
|
|
}
|