command_volume_mount.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, &commandVolumeMount{})
  13. }
  14. type commandVolumeMount struct {
  15. }
  16. func (c *commandVolumeMount) Name() string {
  17. return "volume.mount"
  18. }
  19. func (c *commandVolumeMount) Help() string {
  20. return `mount a volume from one volume server
  21. volume.mount <volume server host:port> <volume id>
  22. This command mounts a volume from one volume server.
  23. `
  24. }
  25. func (c *commandVolumeMount) 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 mountVolume(ctx, commandEnv.option.GrpcDialOption, volumeId, sourceVolumeServer)
  37. }
  38. func mountVolume(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. _, mountErr := volumeServerClient.VolumeMount(ctx, &volume_server_pb.VolumeMountRequest{
  41. VolumeId: uint32(volumeId),
  42. })
  43. return mountErr
  44. })
  45. }