Skip to content

Commit ff19955

Browse files
fix: do not retain copy of chunk while indexing a new chunk in tsdb while processing delete requests (#15541)
1 parent a431ee2 commit ff19955

File tree

1 file changed

+22
-18
lines changed

1 file changed

+22
-18
lines changed

‎pkg/storage/stores/shipper/indexshipper/tsdb/compactor.go

+22-18
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ type compactedIndex struct {
269269
tableInterval model.Interval
270270
periodConfig config.PeriodConfig
271271

272-
indexChunks []chunk.Chunk
272+
indexChunks map[string][]tsdbindex.ChunkMeta
273273
deleteChunks map[string][]tsdbindex.ChunkMeta
274274
seriesToCleanup map[string]struct{}
275275
}
@@ -282,6 +282,7 @@ func newCompactedIndex(ctx context.Context, tableName, userID, workingDir string
282282
workingDir: workingDir,
283283
periodConfig: periodConfig,
284284
tableInterval: retention.ExtractIntervalFromTableName(tableName),
285+
indexChunks: map[string][]tsdbindex.ChunkMeta{},
285286
deleteChunks: map[string][]tsdbindex.ChunkMeta{},
286287
seriesToCleanup: map[string]struct{}{},
287288
}
@@ -338,7 +339,20 @@ func (c *compactedIndex) IndexChunk(chk chunk.Chunk) (bool, error) {
338339
return false, nil
339340
}
340341

341-
c.indexChunks = append(c.indexChunks, chk)
342+
// TSDB doesnt need the __name__="log" convention the old chunk store index used.
343+
b := labels.NewBuilder(chk.Metric)
344+
b.Del(labels.MetricName)
345+
ls := b.Labels().String()
346+
347+
approxKB := math.Round(float64(chk.Data.UncompressedSize()) / float64(1<<10))
348+
349+
c.indexChunks[ls] = append(c.indexChunks[ls], tsdbindex.ChunkMeta{
350+
Checksum: chk.Checksum,
351+
MinTime: int64(chk.From),
352+
MaxTime: int64(chk.Through),
353+
KB: uint32(approxKB),
354+
Entries: uint32(chk.Data.Entries()),
355+
})
342356

343357
return true, nil
344358
}
@@ -372,22 +386,12 @@ func (c *compactedIndex) ToIndexFile() (shipperindex.Index, error) {
372386
}
373387
c.deleteChunks = nil
374388

375-
for _, chk := range c.indexChunks {
376-
// TSDB doesnt need the __name__="log" convention the old chunk store index used.
377-
b := labels.NewBuilder(chk.Metric)
378-
b.Del(labels.MetricName)
379-
ls := b.Labels()
380-
381-
approxKB := math.Round(float64(chk.Data.UncompressedSize()) / float64(1<<10))
382-
err := c.builder.InsertChunk(ls.String(), tsdbindex.ChunkMeta{
383-
Checksum: chk.Checksum,
384-
MinTime: int64(chk.From),
385-
MaxTime: int64(chk.Through),
386-
KB: uint32(approxKB),
387-
Entries: uint32(chk.Data.Entries()),
388-
})
389-
if err != nil {
390-
return nil, err
389+
for ls, metas := range c.indexChunks {
390+
for i := range metas {
391+
err := c.builder.InsertChunk(ls, metas[i])
392+
if err != nil {
393+
return nil, err
394+
}
391395
}
392396
}
393397
c.indexChunks = nil

0 commit comments

Comments
 (0)