mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-11 15:34:56 +00:00
lib/storage: do not report about the need of free disk space if parts cannot be merged due to too big write amplification
This commit is contained in:
parent
887a3c317f
commit
c0bd208c77
1 changed files with 1 additions and 1 deletions
|
@ -1381,7 +1381,7 @@ func appendPartsToMerge(dst, src []*partWrapper, maxPartsToMerge int, maxRows ui
|
|||
}
|
||||
if maxM < minM {
|
||||
// There is no sense in merging parts with too small m.
|
||||
return dst, needFreeSpace
|
||||
return dst, false
|
||||
}
|
||||
return append(dst, pws...), needFreeSpace
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue