mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-27 12:49:41 +08:00
adds more info on skipped volumes
This commit is contained in:
parent
f2db746690
commit
bc7650bd61
@ -206,6 +206,15 @@ func (c *commandFsMergeVolumes) createMergePlan(collection string, toVolumeId ne
|
|||||||
for i := 0; i < l; i++ {
|
for i := 0; i < l; i++ {
|
||||||
volume := c.volumes[volumes[i]]
|
volume := c.volumes[volumes[i]]
|
||||||
if volume.GetReadOnly() || c.getVolumeSize(volume) == 0 || (collection != "*" && collection != volume.GetCollection()) {
|
if volume.GetReadOnly() || c.getVolumeSize(volume) == 0 || (collection != "*" && collection != volume.GetCollection()) {
|
||||||
|
|
||||||
|
if fromVolumeId != 0 && volumes[i] == fromVolumeId || toVolumeId != 0 && volumes[i] == toVolumeId {
|
||||||
|
if volume.GetReadOnly() {
|
||||||
|
return nil, fmt.Errorf("volume %d is readonly", volumes[i])
|
||||||
|
}
|
||||||
|
if c.getVolumeSize(volume) == 0 {
|
||||||
|
return nil, fmt.Errorf("volume %d is empty", volumes[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
volumes = slices.Delete(volumes, i, i+1)
|
volumes = slices.Delete(volumes, i, i+1)
|
||||||
i--
|
i--
|
||||||
l--
|
l--
|
||||||
@ -229,9 +238,14 @@ func (c *commandFsMergeVolumes) createMergePlan(collection string, toVolumeId ne
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if !compatible {
|
if !compatible {
|
||||||
|
fmt.Printf("volume %d is not compatible with volume %d\n", src, condidate)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if c.getVolumeSizeBasedOnPlan(plan, condidate)+c.getVolumeSizeById(src) > c.volumeSizeLimit {
|
if c.getVolumeSizeBasedOnPlan(plan, condidate)+c.getVolumeSizeById(src) > c.volumeSizeLimit {
|
||||||
|
fmt.Printf("volume %d (%d MB) merge into volume %d (%d MB) exceeds volume size limit (%d MB)\n",
|
||||||
|
src, c.getVolumeSizeById(src)/1024/1024,
|
||||||
|
condidate, c.getVolumeSizeById(condidate)/1024/1024,
|
||||||
|
c.volumeSizeLimit/1024/1024)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
plan[src] = condidate
|
plan[src] = condidate
|
||||||
|
Loading…
Reference in New Issue
Block a user