command_volume_unmount.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package shell
  2. import (
  3. "context"
  4. "fmt"
  5. "io"
  6. "github.com/chrislusf/seaweedfs/weed/operation"
  7. "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
  8. "github.com/chrislusf/seaweedfs/weed/storage/needle"
  9. "google.golang.org/grpc"
  10. )
  11. func init() {
  12. Commands = append(Commands, &commandVolumeUnmount{})
  13. }
  14. type commandVolumeUnmount struct {
  15. }
  16. func (c *commandVolumeUnmount) Name() string {
  17. return "volume.unmount"
  18. }
  19. func (c *commandVolumeUnmount) Help() string {
  20. return `unmount a volume from one volume server
  21. volume.unmount <volume server host:port> <volume id>
  22. This command unmounts a volume from one volume server.
  23. `
  24. }
  25. func (c *commandVolumeUnmount) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
  26. if len(args) != 2 {
  27. fmt.Fprintf(writer, "received args: %+v\n", args)
  28. return fmt.Errorf("need 2 args of <volume server host:port> <volume id>")
  29. }
  30. sourceVolumeServer, volumeIdString := args[0], args[1]
  31. volumeId, err := needle.NewVolumeId(volumeIdString)
  32. if err != nil {
  33. return fmt.Errorf("wrong volume id format %s: %v", volumeId, err)
  34. }
  35. ctx := context.Background()
  36. return unmountVolume(ctx, commandEnv.option.GrpcDialOption, volumeId, sourceVolumeServer)
  37. }
  38. func unmountVolume(ctx context.Context, grpcDialOption grpc.DialOption, volumeId needle.VolumeId, sourceVolumeServer string) (err error) {
  39. return operation.WithVolumeServerClient(sourceVolumeServer, grpcDialOption, func(ctx context.Context, volumeServerClient volume_server_pb.VolumeServerClient) error {
  40. _, unmountErr := volumeServerClient.VolumeUnmount(ctx, &volume_server_pb.VolumeUnmountRequest{
  41. VolumeId: uint32(volumeId),
  42. })
  43. return unmountErr
  44. })
  45. }