command_volume_tier_upload.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. package shell
  2. import (
  3. "context"
  4. "flag"
  5. "fmt"
  6. "io"
  7. "time"
  8. "github.com/seaweedfs/seaweedfs/weed/pb"
  9. "google.golang.org/grpc"
  10. "github.com/seaweedfs/seaweedfs/weed/operation"
  11. "github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
  12. "github.com/seaweedfs/seaweedfs/weed/storage/needle"
  13. )
  14. func init() {
  15. Commands = append(Commands, &commandVolumeTierUpload{})
  16. }
  17. type commandVolumeTierUpload struct {
  18. }
  19. func (c *commandVolumeTierUpload) Name() string {
  20. return "volume.tier.upload"
  21. }
  22. func (c *commandVolumeTierUpload) Help() string {
  23. return `upload the dat file of a volume to a remote tier
  24. volume.tier.upload [-collection=""] [-fullPercent=95] [-quietFor=1h]
  25. volume.tier.upload [-collection=""] -volumeId=<volume_id> -dest=<storage_backend> [-keepLocalDatFile]
  26. e.g.:
  27. volume.tier.upload -volumeId=7 -dest=s3
  28. volume.tier.upload -volumeId=7 -dest=s3.default
  29. The <storage_backend> is defined in master.toml.
  30. For example, "s3.default" in [storage.backend.s3.default]
  31. This command will move the dat file of a volume to a remote tier.
  32. SeaweedFS enables scalable and fast local access to lots of files,
  33. and the cloud storage is slower by cost efficient. How to combine them together?
  34. Usually the data follows 80/20 rule: only 20% of data is frequently accessed.
  35. We can offload the old volumes to the cloud.
  36. With this, SeaweedFS can be both fast and scalable, and infinite storage space.
  37. Just add more local SeaweedFS volume servers to increase the throughput.
  38. The index file is still local, and the same O(1) disk read is applied to the remote file.
  39. `
  40. }
  41. func (c *commandVolumeTierUpload) HasTag(CommandTag) bool {
  42. return false
  43. }
  44. func (c *commandVolumeTierUpload) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
  45. tierCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
  46. volumeId := tierCommand.Int("volumeId", 0, "the volume id")
  47. collection := tierCommand.String("collection", "", "the collection name")
  48. fullPercentage := tierCommand.Float64("fullPercent", 95, "the volume reaches the percentage of max volume size")
  49. quietPeriod := tierCommand.Duration("quietFor", 24*time.Hour, "select volumes without no writes for this period")
  50. dest := tierCommand.String("dest", "", "the target tier name")
  51. keepLocalDatFile := tierCommand.Bool("keepLocalDatFile", false, "whether keep local dat file")
  52. if err = tierCommand.Parse(args); err != nil {
  53. return nil
  54. }
  55. if err = commandEnv.confirmIsLocked(args); err != nil {
  56. return
  57. }
  58. vid := needle.VolumeId(*volumeId)
  59. // volumeId is provided
  60. if vid != 0 {
  61. return doVolumeTierUpload(commandEnv, writer, *collection, vid, *dest, *keepLocalDatFile)
  62. }
  63. // apply to all volumes in the collection
  64. // reusing collectVolumeIdsForEcEncode for now
  65. volumeIds, err := collectVolumeIdsForEcEncode(commandEnv, *collection, *fullPercentage, *quietPeriod)
  66. if err != nil {
  67. return err
  68. }
  69. fmt.Printf("tier upload volumes: %v\n", volumeIds)
  70. for _, vid := range volumeIds {
  71. if err = doVolumeTierUpload(commandEnv, writer, *collection, vid, *dest, *keepLocalDatFile); err != nil {
  72. return err
  73. }
  74. }
  75. return nil
  76. }
  77. func doVolumeTierUpload(commandEnv *CommandEnv, writer io.Writer, collection string, vid needle.VolumeId, dest string, keepLocalDatFile bool) (err error) {
  78. // find volume location
  79. existingLocations, found := commandEnv.MasterClient.GetLocationsClone(uint32(vid))
  80. if !found {
  81. return fmt.Errorf("volume %d not found", vid)
  82. }
  83. err = markVolumeReplicasWritable(commandEnv.option.GrpcDialOption, vid, existingLocations, false, false)
  84. if err != nil {
  85. return fmt.Errorf("mark volume %d as readonly on %s: %v", vid, existingLocations[0].Url, err)
  86. }
  87. // copy the .dat file to remote tier
  88. err = uploadDatToRemoteTier(commandEnv.option.GrpcDialOption, writer, vid, collection, existingLocations[0].ServerAddress(), dest, keepLocalDatFile)
  89. if err != nil {
  90. return fmt.Errorf("copy dat file for volume %d on %s to %s: %v", vid, existingLocations[0].Url, dest, err)
  91. }
  92. if keepLocalDatFile {
  93. return nil
  94. }
  95. // now the first replica has the .idx and .vif files.
  96. // ask replicas on other volume server to delete its own local copy
  97. for i, location := range existingLocations {
  98. if i == 0 {
  99. continue
  100. }
  101. fmt.Printf("delete volume %d from %s\n", vid, location.Url)
  102. err = deleteVolume(commandEnv.option.GrpcDialOption, vid, location.ServerAddress(), false)
  103. if err != nil {
  104. return fmt.Errorf("deleteVolume %s volume %d: %v", location.Url, vid, err)
  105. }
  106. }
  107. return nil
  108. }
  109. func uploadDatToRemoteTier(grpcDialOption grpc.DialOption, writer io.Writer, volumeId needle.VolumeId, collection string, sourceVolumeServer pb.ServerAddress, dest string, keepLocalDatFile bool) error {
  110. err := operation.WithVolumeServerClient(true, sourceVolumeServer, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
  111. stream, copyErr := volumeServerClient.VolumeTierMoveDatToRemote(context.Background(), &volume_server_pb.VolumeTierMoveDatToRemoteRequest{
  112. VolumeId: uint32(volumeId),
  113. Collection: collection,
  114. DestinationBackendName: dest,
  115. KeepLocalDatFile: keepLocalDatFile,
  116. })
  117. if stream == nil && copyErr == nil {
  118. // when the volume is already uploaded, VolumeTierMoveDatToRemote will return nil stream and nil error
  119. // so we should directly return in this case
  120. fmt.Fprintf(writer, "volume %v already uploaded", volumeId)
  121. return nil
  122. }
  123. var lastProcessed int64
  124. for {
  125. resp, recvErr := stream.Recv()
  126. if recvErr != nil {
  127. if recvErr == io.EOF {
  128. break
  129. } else {
  130. return recvErr
  131. }
  132. }
  133. processingSpeed := float64(resp.Processed-lastProcessed) / 1024.0 / 1024.0
  134. fmt.Fprintf(writer, "copied %.2f%%, %d bytes, %.2fMB/s\n", resp.ProcessedPercentage, resp.Processed, processingSpeed)
  135. lastProcessed = resp.Processed
  136. }
  137. return copyErr
  138. })
  139. return err
  140. }