1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-03 01:50:04 +02:00

Merge pull request #3056 from kmlebedev/avoid_del_volume

avoid delete volume replica if collection mismatch
This commit is contained in:
Chris Lu 2022-05-16 01:17:53 -07:00 committed by GitHub
commit 17c676cb86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -200,6 +200,17 @@ func (c *commandVolumeFixReplication) deleteOneVolume(commandEnv *CommandEnv, wr
}
}
сollectionIsMismatch := false
for _, volumeReplica := range replicas {
if volumeReplica.info.Collection != replica.info.Collection {
fmt.Fprintf(writer, "skip delete volume %d as collection %s is mismatch: %s\n", replica.info.Id, replica.info.Collection, volumeReplica.info.Collection)
сollectionIsMismatch = true
}
}
if сollectionIsMismatch {
continue
}
fmt.Fprintf(writer, "deleting volume %d from %s ...\n", replica.info.Id, replica.location.dataNode.Id)
if !takeAction {