mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Revert "Merge pull request #3159 from shichanglin5/_duplicateUUID"
This reverts commit37da689319
, reversing changes made to00d53c34c4
.
This commit is contained in:
parent
873830a7bf
commit
9f8b72a54d
|
@ -119,30 +119,16 @@ func (vs *VolumeServer) doHeartbeat(masterAddress pb.ServerAddress, grpcDialOpti
|
|||
return
|
||||
}
|
||||
if len(in.DuplicatedUuids) > 0 {
|
||||
var duplicatedDir []string
|
||||
|
||||
foundDuplicate := false
|
||||
duplicateSet := make(map[string]struct{})
|
||||
var duplictedDir []string
|
||||
for _, loc := range vs.store.Locations {
|
||||
directoryUuid := loc.DirectoryUuid
|
||||
if _, exists := duplicateSet[directoryUuid]; !exists {
|
||||
duplicateSet[directoryUuid] = struct{}{}
|
||||
} else {
|
||||
foundDuplicate = true
|
||||
}
|
||||
|
||||
for _, uuid := range in.DuplicatedUuids {
|
||||
if uuid == directoryUuid {
|
||||
duplicatedDir = append(duplicatedDir, loc.Directory)
|
||||
if uuid == loc.DirectoryUuid {
|
||||
duplictedDir = append(duplictedDir, loc.Directory)
|
||||
}
|
||||
}
|
||||
}
|
||||
if foundDuplicate {
|
||||
glog.Errorf("Shut down Volume Server due to duplicated volume directories: %v", duplicatedDir)
|
||||
os.Exit(1)
|
||||
} else {
|
||||
glog.Warningf("Receive response of duplicated volume directories: %v, ignored(the check found no duplicates)", duplicatedDir)
|
||||
}
|
||||
glog.Errorf("Shut down Volume Server due to duplicated volume directories: %v", duplictedDir)
|
||||
os.Exit(1)
|
||||
}
|
||||
if in.GetVolumeSizeLimit() != 0 && vs.store.GetVolumeSizeLimit() != in.GetVolumeSizeLimit() {
|
||||
vs.store.SetVolumeSizeLimit(in.GetVolumeSizeLimit())
|
||||
|
|
|
@ -293,6 +293,7 @@ func (v *Volume) collectStatus() (maxFileKey types.NeedleId, datFileSize int64,
|
|||
fileCount = uint64(v.nm.FileCount())
|
||||
deletedCount = uint64(v.nm.DeletedCount())
|
||||
deletedSize = v.nm.DeletedSize()
|
||||
fileCount = uint64(v.nm.FileCount())
|
||||
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue