2019-12-25 17:53:13 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2021-09-13 05:47:52 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2019-12-25 17:53:13 +00:00
|
|
|
"io"
|
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Commands = append(Commands, &commandVolumeTierDownload{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type commandVolumeTierDownload struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeTierDownload) Name() string {
|
|
|
|
return "volume.tier.download"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeTierDownload) Help() string {
|
2020-01-01 20:37:38 +00:00
|
|
|
return `download the dat file of a volume from a remote tier
|
2019-12-25 17:53:13 +00:00
|
|
|
|
|
|
|
volume.tier.download [-collection=""]
|
|
|
|
volume.tier.download [-collection=""] -volumeId=<volume_id>
|
|
|
|
|
|
|
|
e.g.:
|
|
|
|
volume.tier.download -volumeId=7
|
|
|
|
volume.tier.download -volumeId=7
|
|
|
|
|
|
|
|
This command will download the dat file of a volume from a remote tier to a volume server in local cluster.
|
|
|
|
|
|
|
|
`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeTierDownload) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
|
|
|
|
|
|
|
tierCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
|
|
|
|
volumeId := tierCommand.Int("volumeId", 0, "the volume id")
|
|
|
|
collection := tierCommand.String("collection", "", "the collection name")
|
|
|
|
if err = tierCommand.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-10 21:24:38 +00:00
|
|
|
if err = commandEnv.confirmIsLocked(args); err != nil {
|
2021-09-14 05:13:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-25 17:53:13 +00:00
|
|
|
vid := needle.VolumeId(*volumeId)
|
|
|
|
|
|
|
|
// collect topology information
|
2022-02-08 08:53:55 +00:00
|
|
|
topologyInfo, _, err := collectTopologyInfo(commandEnv, 0)
|
2019-12-25 17:53:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// volumeId is provided
|
|
|
|
if vid != 0 {
|
2020-02-26 05:50:12 +00:00
|
|
|
return doVolumeTierDownload(commandEnv, writer, *collection, vid)
|
2019-12-25 17:53:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// apply to all volumes in the collection
|
|
|
|
// reusing collectVolumeIdsForEcEncode for now
|
|
|
|
volumeIds := collectRemoteVolumes(topologyInfo, *collection)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Printf("tier download volumes: %v\n", volumeIds)
|
|
|
|
for _, vid := range volumeIds {
|
2020-02-26 05:50:12 +00:00
|
|
|
if err = doVolumeTierDownload(commandEnv, writer, *collection, vid); err != nil {
|
2019-12-25 17:53:13 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func collectRemoteVolumes(topoInfo *master_pb.TopologyInfo, selectedCollection string) (vids []needle.VolumeId) {
|
|
|
|
|
|
|
|
vidMap := make(map[uint32]bool)
|
|
|
|
eachDataNode(topoInfo, func(dc string, rack RackId, dn *master_pb.DataNodeInfo) {
|
2021-02-16 10:47:02 +00:00
|
|
|
for _, diskInfo := range dn.DiskInfos {
|
|
|
|
for _, v := range diskInfo.VolumeInfos {
|
|
|
|
if v.Collection == selectedCollection && v.RemoteStorageKey != "" && v.RemoteStorageName != "" {
|
|
|
|
vidMap[v.Id] = true
|
|
|
|
}
|
2019-12-25 17:53:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
for vid := range vidMap {
|
|
|
|
vids = append(vids, needle.VolumeId(vid))
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
func doVolumeTierDownload(commandEnv *CommandEnv, writer io.Writer, collection string, vid needle.VolumeId) (err error) {
|
2019-12-25 17:53:13 +00:00
|
|
|
// find volume location
|
|
|
|
locations, found := commandEnv.MasterClient.GetLocations(uint32(vid))
|
|
|
|
if !found {
|
|
|
|
return fmt.Errorf("volume %d not found", vid)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO parallelize this
|
|
|
|
for _, loc := range locations {
|
|
|
|
// copy the .dat file from remote tier to local
|
2021-09-13 05:47:52 +00:00
|
|
|
err = downloadDatFromRemoteTier(commandEnv.option.GrpcDialOption, writer, needle.VolumeId(vid), collection, loc.ServerAddress())
|
2019-12-25 17:53:13 +00:00
|
|
|
if err != nil {
|
2019-12-25 17:56:42 +00:00
|
|
|
return fmt.Errorf("download dat file for volume %d to %s: %v", vid, loc.Url, err)
|
|
|
|
}
|
2019-12-25 17:53:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-13 05:47:52 +00:00
|
|
|
func downloadDatFromRemoteTier(grpcDialOption grpc.DialOption, writer io.Writer, volumeId needle.VolumeId, collection string, targetVolumeServer pb.ServerAddress) error {
|
2019-12-25 17:53:13 +00:00
|
|
|
|
2021-12-26 08:15:03 +00:00
|
|
|
err := operation.WithVolumeServerClient(true, targetVolumeServer, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
2020-02-26 05:50:12 +00:00
|
|
|
stream, downloadErr := volumeServerClient.VolumeTierMoveDatFromRemote(context.Background(), &volume_server_pb.VolumeTierMoveDatFromRemoteRequest{
|
2019-12-25 17:56:42 +00:00
|
|
|
VolumeId: uint32(volumeId),
|
|
|
|
Collection: collection,
|
2019-12-25 17:53:13 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
var lastProcessed int64
|
|
|
|
for {
|
|
|
|
resp, recvErr := stream.Recv()
|
|
|
|
if recvErr != nil {
|
|
|
|
if recvErr == io.EOF {
|
|
|
|
break
|
|
|
|
} else {
|
|
|
|
return recvErr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
processingSpeed := float64(resp.Processed-lastProcessed) / 1024.0 / 1024.0
|
|
|
|
|
|
|
|
fmt.Fprintf(writer, "downloaded %.2f%%, %d bytes, %.2fMB/s\n", resp.ProcessedPercentage, resp.Processed, processingSpeed)
|
|
|
|
|
|
|
|
lastProcessed = resp.Processed
|
|
|
|
}
|
|
|
|
if downloadErr != nil {
|
|
|
|
return downloadErr
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
_, unmountErr := volumeServerClient.VolumeUnmount(context.Background(), &volume_server_pb.VolumeUnmountRequest{
|
2019-12-25 17:53:13 +00:00
|
|
|
VolumeId: uint32(volumeId),
|
|
|
|
})
|
|
|
|
if unmountErr != nil {
|
|
|
|
return unmountErr
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
_, mountErr := volumeServerClient.VolumeMount(context.Background(), &volume_server_pb.VolumeMountRequest{
|
2019-12-25 17:53:13 +00:00
|
|
|
VolumeId: uint32(volumeId),
|
|
|
|
})
|
|
|
|
if mountErr != nil {
|
|
|
|
return mountErr
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|