|
|
@ -23,7 +23,7 @@ func (c *commandVolumeTierMove) Name() string { |
|
|
|
} |
|
|
|
|
|
|
|
func (c *commandVolumeTierMove) Help() string { |
|
|
|
return `<WIP> change a volume from one disk type to another |
|
|
|
return `change a volume from one disk type to another |
|
|
|
|
|
|
|
volume.tier.move -fromDiskType=hdd -toDiskType=ssd [-collection=""] [-fullPercent=95] [-quietFor=1h] |
|
|
|
|
|
|
@ -45,6 +45,7 @@ func (c *commandVolumeTierMove) Do(args []string, commandEnv *CommandEnv, writer |
|
|
|
quietPeriod := tierCommand.Duration("quietFor", 24*time.Hour, "select volumes without no writes for this period") |
|
|
|
source := tierCommand.String("fromDiskType", "", "the source disk type") |
|
|
|
target := tierCommand.String("toDiskType", "", "the target disk type") |
|
|
|
applyChange := tierCommand.Bool("force", false, "actually apply the changes") |
|
|
|
if err = tierCommand.Parse(args); err != nil { |
|
|
|
return nil |
|
|
|
} |
|
|
@ -62,13 +63,67 @@ func (c *commandVolumeTierMove) Do(args []string, commandEnv *CommandEnv, writer |
|
|
|
return err |
|
|
|
} |
|
|
|
|
|
|
|
// apply to all volumes in the collection
|
|
|
|
// collect all volumes that should change
|
|
|
|
volumeIds, err := collectVolumeIdsForTierChange(commandEnv, topologyInfo, volumeSizeLimitMb, fromDiskType, *collection, *fullPercentage, *quietPeriod) |
|
|
|
if err != nil { |
|
|
|
return err |
|
|
|
} |
|
|
|
fmt.Printf("tier move volumes: %v\n", volumeIds) |
|
|
|
|
|
|
|
_, allLocations := collectVolumeReplicaLocations(topologyInfo) |
|
|
|
for _, vid := range volumeIds { |
|
|
|
if err = doVolumeTierMove(commandEnv, writer, *collection, vid, toDiskType, allLocations, *applyChange); err != nil { |
|
|
|
fmt.Printf("tier move volume %d: %v\n", vid, err) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return nil |
|
|
|
} |
|
|
|
|
|
|
|
func doVolumeTierMove(commandEnv *CommandEnv, writer io.Writer, collection string, vid needle.VolumeId, toDiskType types.DiskType, allLocations []location, applyChanges bool) (err error) { |
|
|
|
// find volume location
|
|
|
|
locations, found := commandEnv.MasterClient.GetLocations(uint32(vid)) |
|
|
|
if !found { |
|
|
|
return fmt.Errorf("volume %d not found", vid) |
|
|
|
} |
|
|
|
|
|
|
|
// find one server with the most empty volume slots with target disk type
|
|
|
|
hasFoundTarget := false |
|
|
|
keepDataNodesSorted(allLocations, toDiskType) |
|
|
|
fn := capacityByFreeVolumeCount(toDiskType) |
|
|
|
for _, dst := range allLocations { |
|
|
|
if fn(dst.dataNode) > 0 { |
|
|
|
// ask the volume server to replicate the volume
|
|
|
|
sourceVolumeServer := "" |
|
|
|
for _, loc := range locations { |
|
|
|
if loc.Url != dst.dataNode.Id { |
|
|
|
sourceVolumeServer = loc.Url |
|
|
|
} |
|
|
|
} |
|
|
|
if sourceVolumeServer == "" { |
|
|
|
continue |
|
|
|
} |
|
|
|
fmt.Fprintf(writer, "moving volume %d %s from %s to dataNode %s with disk type ...\n", vid, sourceVolumeServer, dst.dataNode.Id, toDiskType.String()) |
|
|
|
hasFoundTarget = true |
|
|
|
|
|
|
|
if !applyChanges { |
|
|
|
break |
|
|
|
} |
|
|
|
|
|
|
|
// mark all replicas as read only
|
|
|
|
err = markVolumeReadonly(commandEnv.option.GrpcDialOption, vid, locations) |
|
|
|
if err != nil { |
|
|
|
return fmt.Errorf("mark volume %d as readonly on %s: %v", vid, locations[0].Url, err) |
|
|
|
} |
|
|
|
return LiveMoveVolume(commandEnv.option.GrpcDialOption, vid, sourceVolumeServer, dst.dataNode.Id, 5*time.Second, toDiskType.String()) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if !hasFoundTarget { |
|
|
|
fmt.Fprintf(writer, "can not find disk type %s for volume %d\n", toDiskType.String(), vid) |
|
|
|
} |
|
|
|
|
|
|
|
return nil |
|
|
|
} |
|
|
|
|
|
|
|