mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
lib/{mergeset,storage}: add start background workers via startBackgroundWorkers() function
This commit is contained in:
parent
33dda2809b
commit
544ea89f91
@ -291,8 +291,7 @@ func OpenTable(path string, flushCallback func(), prepareBlock PrepareBlockCallb
|
||||
stopCh: make(chan struct{}),
|
||||
}
|
||||
tb.rawItems.init()
|
||||
tb.startPartMergers()
|
||||
tb.startRawItemsFlusher()
|
||||
tb.startBackgroundWorkers()
|
||||
|
||||
var m TableMetrics
|
||||
tb.UpdateMetrics(&m)
|
||||
@ -323,6 +322,11 @@ func OpenTable(path string, flushCallback func(), prepareBlock PrepareBlockCallb
|
||||
return tb, nil
|
||||
}
|
||||
|
||||
func (tb *Table) startBackgroundWorkers() {
|
||||
tb.startPartMergers()
|
||||
tb.startRawItemsFlusher()
|
||||
}
|
||||
|
||||
// MustClose closes the table.
|
||||
func (tb *Table) MustClose() {
|
||||
close(tb.stopCh)
|
||||
|
@ -204,16 +204,20 @@ func createPartition(timestamp int64, smallPartitionsPath, bigPartitionsPath str
|
||||
|
||||
pt := newPartition(name, smallPartsPath, bigPartsPath, s)
|
||||
pt.tr.fromPartitionTimestamp(timestamp)
|
||||
pt.startMergeWorkers()
|
||||
pt.startRawRowsFlusher()
|
||||
pt.startInmemoryPartsFlusher()
|
||||
pt.startStalePartsRemover()
|
||||
pt.startBackgroundWorkers()
|
||||
|
||||
logger.Infof("partition %q has been created", name)
|
||||
|
||||
return pt, nil
|
||||
}
|
||||
|
||||
func (pt *partition) startBackgroundWorkers() {
|
||||
pt.startMergeWorkers()
|
||||
pt.startRawRowsFlusher()
|
||||
pt.startInmemoryPartsFlusher()
|
||||
pt.startStalePartsRemover()
|
||||
}
|
||||
|
||||
// Drop drops all the data on the storage for the given pt.
|
||||
//
|
||||
// The pt must be detached from table before calling pt.Drop.
|
||||
@ -258,10 +262,7 @@ func openPartition(smallPartsPath, bigPartsPath string, s *Storage) (*partition,
|
||||
if err := pt.tr.fromPartitionName(name); err != nil {
|
||||
return nil, fmt.Errorf("cannot obtain partition time range from smallPartsPath %q: %w", smallPartsPath, err)
|
||||
}
|
||||
pt.startMergeWorkers()
|
||||
pt.startRawRowsFlusher()
|
||||
pt.startInmemoryPartsFlusher()
|
||||
pt.startStalePartsRemover()
|
||||
pt.startBackgroundWorkers()
|
||||
|
||||
return pt, nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user