|
|
@ -56,6 +56,8 @@ func (c *commandVolumeFixReplication) Do(args []string, commandEnv *CommandEnv, |
|
|
|
c.collectionPattern = volFixReplicationCommand.String("collectionPattern", "", "match with wildcard characters '*' and '?'") |
|
|
|
skipChange := volFixReplicationCommand.Bool("n", false, "skip the changes") |
|
|
|
retryCount := volFixReplicationCommand.Int("retry", 0, "how many times to retry") |
|
|
|
volumespPerStep := volFixReplicationCommand.Int("volumes_per_step", 0, "how many volumes to fix in one cycle") |
|
|
|
|
|
|
|
if err = volFixReplicationCommand.Parse(args); err != nil { |
|
|
|
return nil |
|
|
|
} |
|
|
@ -66,6 +68,8 @@ func (c *commandVolumeFixReplication) Do(args []string, commandEnv *CommandEnv, |
|
|
|
|
|
|
|
takeAction := !*skipChange |
|
|
|
|
|
|
|
underReplicatedVolumeIdsCount := 1 |
|
|
|
for underReplicatedVolumeIdsCount > 0 { |
|
|
|
// collect topology information
|
|
|
|
topologyInfo, _, err := collectTopologyInfo(commandEnv) |
|
|
|
if err != nil { |
|
|
@ -94,16 +98,24 @@ func (c *commandVolumeFixReplication) Do(args []string, commandEnv *CommandEnv, |
|
|
|
} |
|
|
|
|
|
|
|
if len(overReplicatedVolumeIds) > 0 { |
|
|
|
return c.fixOverReplicatedVolumes(commandEnv, writer, takeAction, overReplicatedVolumeIds, volumeReplicas, allLocations) |
|
|
|
if err := c.fixOverReplicatedVolumes(commandEnv, writer, takeAction, overReplicatedVolumeIds, volumeReplicas, allLocations); err != nil { |
|
|
|
return err |
|
|
|
} |
|
|
|
|
|
|
|
if len(underReplicatedVolumeIds) == 0 { |
|
|
|
return nil |
|
|
|
} |
|
|
|
|
|
|
|
underReplicatedVolumeIdsCount = len(underReplicatedVolumeIds) |
|
|
|
if underReplicatedVolumeIdsCount > 0 { |
|
|
|
// find the most under populated data nodes
|
|
|
|
return c.fixUnderReplicatedVolumes(commandEnv, writer, takeAction, underReplicatedVolumeIds, volumeReplicas, allLocations, *retryCount) |
|
|
|
if err := c.fixUnderReplicatedVolumes(commandEnv, writer, takeAction, underReplicatedVolumeIds, volumeReplicas, allLocations, *retryCount, *volumespPerStep); err != nil { |
|
|
|
return err |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if *skipChange { |
|
|
|
break |
|
|
|
} |
|
|
|
} |
|
|
|
return nil |
|
|
|
} |
|
|
|
|
|
|
|
func collectVolumeReplicaLocations(topologyInfo *master_pb.TopologyInfo) (map[uint32][]*VolumeReplica, []location) { |
|
|
@ -156,8 +168,10 @@ func (c *commandVolumeFixReplication) fixOverReplicatedVolumes(commandEnv *Comma |
|
|
|
return nil |
|
|
|
} |
|
|
|
|
|
|
|
func (c *commandVolumeFixReplication) fixUnderReplicatedVolumes(commandEnv *CommandEnv, writer io.Writer, takeAction bool, underReplicatedVolumeIds []uint32, volumeReplicas map[uint32][]*VolumeReplica, allLocations []location, retryCount int) (err error) { |
|
|
|
|
|
|
|
func (c *commandVolumeFixReplication) fixUnderReplicatedVolumes(commandEnv *CommandEnv, writer io.Writer, takeAction bool, underReplicatedVolumeIds []uint32, volumeReplicas map[uint32][]*VolumeReplica, allLocations []location, retryCount int, volumespPerStep int) (err error) { |
|
|
|
if len(underReplicatedVolumeIds) > volumespPerStep && volumespPerStep > 0 { |
|
|
|
underReplicatedVolumeIds = underReplicatedVolumeIds[0:volumespPerStep] |
|
|
|
} |
|
|
|
for _, vid := range underReplicatedVolumeIds { |
|
|
|
for i := 0; i < retryCount+1; i++ { |
|
|
|
if err = c.fixOneUnderReplicatedVolume(commandEnv, writer, takeAction, volumeReplicas, vid, allLocations); err == nil { |
|
|
|