mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/logstorage: run up to GOMAXPROCS flushers of old in-memory parts to disk
One flusher isn't enough under high data ingestion rate. Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/4775
This commit is contained in:
parent
256d800200
commit
10d9214980
1 changed files with 5 additions and 2 deletions
|
@ -191,7 +191,8 @@ func mustOpenDatadb(pt *partition, path string, flushInterval time.Duration, isR
|
|||
//
|
||||
// This function must be called under partsLock.
|
||||
func (ddb *datadb) startInmemoryPartsFlusherLocked() {
|
||||
if ddb.inmemoryPartsFlushersCount >= 1 {
|
||||
maxWorkers := getMergeWorkersCount()
|
||||
if ddb.inmemoryPartsFlushersCount >= maxWorkers {
|
||||
return
|
||||
}
|
||||
ddb.inmemoryPartsFlushersCount++
|
||||
|
@ -246,7 +247,8 @@ func (ddb *datadb) startMergeWorkerLocked() {
|
|||
if ddb.IsReadOnly() {
|
||||
return
|
||||
}
|
||||
if ddb.mergeWorkersCount >= getMergeWorkersCount() {
|
||||
maxWorkers := getMergeWorkersCount()
|
||||
if ddb.mergeWorkersCount >= maxWorkers {
|
||||
return
|
||||
}
|
||||
ddb.mergeWorkersCount++
|
||||
|
@ -354,6 +356,7 @@ var errReadOnly = errors.New("the storage is in read-only mode")
|
|||
// if isFinal is set, then the resulting part will be saved to disk.
|
||||
//
|
||||
// All the parts inside pws must have isInMerge field set to true.
|
||||
// The isInMerge field inside pws parts is set to false before returning from the function.
|
||||
func (ddb *datadb) mergeParts(pws []*partWrapper, isFinal bool) error {
|
||||
if len(pws) == 0 {
|
||||
// Nothing to merge.
|
||||
|
|
Loading…
Reference in a new issue