mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
find location with matching disk type
This commit is contained in:
parent
94525aa0fd
commit
933f2f4cfd
|
@ -103,6 +103,9 @@ func (s *Store) findVolume(vid needle.VolumeId) *Volume {
|
|||
func (s *Store) FindFreeLocation(diskType DiskType) (ret *DiskLocation) {
|
||||
max := 0
|
||||
for _, location := range s.Locations {
|
||||
if diskType != location.DiskType {
|
||||
continue
|
||||
}
|
||||
currentFreeCount := location.MaxVolumeCount - location.VolumesLen()
|
||||
currentFreeCount *= erasure_coding.DataShardsCount
|
||||
currentFreeCount -= location.EcVolumesLen()
|
||||
|
|
Loading…
Reference in a new issue