2019-04-21 03:31:35 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-09-20 16:27:34 +00:00
|
|
|
"flag"
|
2021-09-13 05:47:52 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2019-04-21 03:31:35 +00:00
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-06-05 08:30:24 +00:00
|
|
|
Commands = append(Commands, &commandVolumeUnmount{})
|
2019-04-21 03:31:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type commandVolumeUnmount struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeUnmount) Name() string {
|
|
|
|
return "volume.unmount"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeUnmount) Help() string {
|
|
|
|
return `unmount a volume from one volume server
|
|
|
|
|
2020-09-20 16:27:34 +00:00
|
|
|
volume.unmount -node <volume server host:port> -volumeId <volume id>
|
2019-04-21 03:31:35 +00:00
|
|
|
|
|
|
|
This command unmounts a volume from one volume server.
|
|
|
|
|
|
|
|
`
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
func (c *commandVolumeUnmount) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
2019-04-21 03:31:35 +00:00
|
|
|
|
2020-09-20 16:27:34 +00:00
|
|
|
volUnmountCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
|
|
|
|
volumeIdInt := volUnmountCommand.Int("volumeId", 0, "the volume id")
|
|
|
|
nodeStr := volUnmountCommand.String("node", "", "the volume server <host>:<port>")
|
|
|
|
if err = volUnmountCommand.Parse(args); err != nil {
|
|
|
|
return nil
|
2019-04-21 03:31:35 +00:00
|
|
|
}
|
|
|
|
|
2021-12-10 21:24:38 +00:00
|
|
|
if err = commandEnv.confirmIsLocked(args); err != nil {
|
2021-09-14 05:13:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-09-13 05:47:52 +00:00
|
|
|
sourceVolumeServer := pb.ServerAddress(*nodeStr)
|
2020-09-20 16:27:34 +00:00
|
|
|
|
|
|
|
volumeId := needle.VolumeId(*volumeIdInt)
|
2019-04-21 03:31:35 +00:00
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
return unmountVolume(commandEnv.option.GrpcDialOption, volumeId, sourceVolumeServer)
|
2019-04-21 03:31:35 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-09-13 05:47:52 +00:00
|
|
|
func unmountVolume(grpcDialOption grpc.DialOption, volumeId needle.VolumeId, sourceVolumeServer pb.ServerAddress) (err error) {
|
2021-12-26 08:15:03 +00:00
|
|
|
return operation.WithVolumeServerClient(false, sourceVolumeServer, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
2020-02-26 05:50:12 +00:00
|
|
|
_, unmountErr := volumeServerClient.VolumeUnmount(context.Background(), &volume_server_pb.VolumeUnmountRequest{
|
2019-04-21 03:31:35 +00:00
|
|
|
VolumeId: uint32(volumeId),
|
|
|
|
})
|
|
|
|
return unmountErr
|
|
|
|
})
|
|
|
|
}
|