command_volume_tier_download.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. package shell
  2. import (
  3. "context"
  4. "flag"
  5. "fmt"
  6. "io"
  7. "google.golang.org/grpc"
  8. "github.com/chrislusf/seaweedfs/weed/operation"
  9. "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
  10. "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
  11. "github.com/chrislusf/seaweedfs/weed/storage/needle"
  12. )
  13. func init() {
  14. Commands = append(Commands, &commandVolumeTierDownload{})
  15. }
  16. type commandVolumeTierDownload struct {
  17. }
  18. func (c *commandVolumeTierDownload) Name() string {
  19. return "volume.tier.download"
  20. }
  21. func (c *commandVolumeTierDownload) Help() string {
  22. return `download the dat file of a volume from a remote tier
  23. volume.tier.download [-collection=""]
  24. volume.tier.download [-collection=""] -volumeId=<volume_id>
  25. e.g.:
  26. volume.tier.download -volumeId=7
  27. volume.tier.download -volumeId=7
  28. This command will download the dat file of a volume from a remote tier to a volume server in local cluster.
  29. `
  30. }
  31. func (c *commandVolumeTierDownload) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
  32. if err = commandEnv.confirmIsLocked(); err != nil {
  33. return
  34. }
  35. tierCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
  36. volumeId := tierCommand.Int("volumeId", 0, "the volume id")
  37. collection := tierCommand.String("collection", "", "the collection name")
  38. if err = tierCommand.Parse(args); err != nil {
  39. return nil
  40. }
  41. vid := needle.VolumeId(*volumeId)
  42. // collect topology information
  43. topologyInfo, err := collectTopologyInfo(commandEnv)
  44. if err != nil {
  45. return err
  46. }
  47. // volumeId is provided
  48. if vid != 0 {
  49. return doVolumeTierDownload(commandEnv, writer, *collection, vid)
  50. }
  51. // apply to all volumes in the collection
  52. // reusing collectVolumeIdsForEcEncode for now
  53. volumeIds := collectRemoteVolumes(topologyInfo, *collection)
  54. if err != nil {
  55. return err
  56. }
  57. fmt.Printf("tier download volumes: %v\n", volumeIds)
  58. for _, vid := range volumeIds {
  59. if err = doVolumeTierDownload(commandEnv, writer, *collection, vid); err != nil {
  60. return err
  61. }
  62. }
  63. return nil
  64. }
  65. func collectRemoteVolumes(topoInfo *master_pb.TopologyInfo, selectedCollection string) (vids []needle.VolumeId) {
  66. vidMap := make(map[uint32]bool)
  67. eachDataNode(topoInfo, func(dc string, rack RackId, dn *master_pb.DataNodeInfo) {
  68. for _, v := range dn.VolumeInfos {
  69. if v.Collection == selectedCollection && v.RemoteStorageKey != "" && v.RemoteStorageName != "" {
  70. vidMap[v.Id] = true
  71. }
  72. }
  73. })
  74. for vid := range vidMap {
  75. vids = append(vids, needle.VolumeId(vid))
  76. }
  77. return
  78. }
  79. func doVolumeTierDownload(commandEnv *CommandEnv, writer io.Writer, collection string, vid needle.VolumeId) (err error) {
  80. // find volume location
  81. locations, found := commandEnv.MasterClient.GetLocations(uint32(vid))
  82. if !found {
  83. return fmt.Errorf("volume %d not found", vid)
  84. }
  85. // TODO parallelize this
  86. for _, loc := range locations {
  87. // copy the .dat file from remote tier to local
  88. err = downloadDatFromRemoteTier(commandEnv.option.GrpcDialOption, writer, needle.VolumeId(vid), collection, loc.Url)
  89. if err != nil {
  90. return fmt.Errorf("download dat file for volume %d to %s: %v", vid, loc.Url, err)
  91. }
  92. }
  93. return nil
  94. }
  95. func downloadDatFromRemoteTier(grpcDialOption grpc.DialOption, writer io.Writer, volumeId needle.VolumeId, collection string, targetVolumeServer string) error {
  96. err := operation.WithVolumeServerClient(targetVolumeServer, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
  97. stream, downloadErr := volumeServerClient.VolumeTierMoveDatFromRemote(context.Background(), &volume_server_pb.VolumeTierMoveDatFromRemoteRequest{
  98. VolumeId: uint32(volumeId),
  99. Collection: collection,
  100. })
  101. var lastProcessed int64
  102. for {
  103. resp, recvErr := stream.Recv()
  104. if recvErr != nil {
  105. if recvErr == io.EOF {
  106. break
  107. } else {
  108. return recvErr
  109. }
  110. }
  111. processingSpeed := float64(resp.Processed-lastProcessed) / 1024.0 / 1024.0
  112. fmt.Fprintf(writer, "downloaded %.2f%%, %d bytes, %.2fMB/s\n", resp.ProcessedPercentage, resp.Processed, processingSpeed)
  113. lastProcessed = resp.Processed
  114. }
  115. if downloadErr != nil {
  116. return downloadErr
  117. }
  118. _, unmountErr := volumeServerClient.VolumeUnmount(context.Background(), &volume_server_pb.VolumeUnmountRequest{
  119. VolumeId: uint32(volumeId),
  120. })
  121. if unmountErr != nil {
  122. return unmountErr
  123. }
  124. _, mountErr := volumeServerClient.VolumeMount(context.Background(), &volume_server_pb.VolumeMountRequest{
  125. VolumeId: uint32(volumeId),
  126. })
  127. if mountErr != nil {
  128. return mountErr
  129. }
  130. return nil
  131. })
  132. return err
  133. }