mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
include ec shard for capacityByFreeVolumeCount
This commit is contained in:
parent
98dc1e5c15
commit
0623bf582e
|
@ -202,7 +202,11 @@ func capacityByFreeVolumeCount(diskType types.DiskType) CapacityFunc {
|
|||
if !found {
|
||||
return 0
|
||||
}
|
||||
return float64(diskInfo.MaxVolumeCount - diskInfo.VolumeCount)
|
||||
var ecShardCount int
|
||||
for _, ecShardInfo := range diskInfo.EcShardInfos {
|
||||
ecShardCount += erasure_coding.ShardBits(ecShardInfo.EcIndexBits).ShardIdCount()
|
||||
}
|
||||
return float64(diskInfo.MaxVolumeCount-diskInfo.VolumeCount) - float64(ecShardCount)/erasure_coding.DataShardsCount
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue