command_volume_mount.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package shell
  2. import (
  3. "context"
  4. "flag"
  5. "github.com/seaweedfs/seaweedfs/weed/pb"
  6. "io"
  7. "github.com/seaweedfs/seaweedfs/weed/operation"
  8. "github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
  9. "github.com/seaweedfs/seaweedfs/weed/storage/needle"
  10. "google.golang.org/grpc"
  11. )
  12. func init() {
  13. Commands = append(Commands, &commandVolumeMount{})
  14. }
  15. type commandVolumeMount struct {
  16. }
  17. func (c *commandVolumeMount) Name() string {
  18. return "volume.mount"
  19. }
  20. func (c *commandVolumeMount) Help() string {
  21. return `mount a volume from one volume server
  22. volume.mount -node <volume server host:port> -volumeId <volume id>
  23. This command mounts a volume from one volume server.
  24. `
  25. }
  26. func (c *commandVolumeMount) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
  27. volMountCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
  28. volumeIdInt := volMountCommand.Int("volumeId", 0, "the volume id")
  29. nodeStr := volMountCommand.String("node", "", "the volume server <host>:<port>")
  30. if err = volMountCommand.Parse(args); err != nil {
  31. return nil
  32. }
  33. if err = commandEnv.confirmIsLocked(args); err != nil {
  34. return
  35. }
  36. sourceVolumeServer := pb.ServerAddress(*nodeStr)
  37. volumeId := needle.VolumeId(*volumeIdInt)
  38. return mountVolume(commandEnv.option.GrpcDialOption, volumeId, sourceVolumeServer)
  39. }
  40. func mountVolume(grpcDialOption grpc.DialOption, volumeId needle.VolumeId, sourceVolumeServer pb.ServerAddress) (err error) {
  41. return operation.WithVolumeServerClient(false, sourceVolumeServer, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
  42. _, mountErr := volumeServerClient.VolumeMount(context.Background(), &volume_server_pb.VolumeMountRequest{
  43. VolumeId: uint32(volumeId),
  44. })
  45. return mountErr
  46. })
  47. }