@@ -269,7 +269,7 @@ type compactedIndex struct {
269
269
tableInterval model.Interval
270
270
periodConfig config.PeriodConfig
271
271
272
- indexChunks []chunk. Chunk
272
+ indexChunks map [ string ][]tsdbindex. ChunkMeta
273
273
deleteChunks map [string ][]tsdbindex.ChunkMeta
274
274
seriesToCleanup map [string ]struct {}
275
275
}
@@ -282,6 +282,7 @@ func newCompactedIndex(ctx context.Context, tableName, userID, workingDir string
282
282
workingDir : workingDir ,
283
283
periodConfig : periodConfig ,
284
284
tableInterval : retention .ExtractIntervalFromTableName (tableName ),
285
+ indexChunks : map [string ][]tsdbindex.ChunkMeta {},
285
286
deleteChunks : map [string ][]tsdbindex.ChunkMeta {},
286
287
seriesToCleanup : map [string ]struct {}{},
287
288
}
@@ -338,7 +339,20 @@ func (c *compactedIndex) IndexChunk(chk chunk.Chunk) (bool, error) {
338
339
return false , nil
339
340
}
340
341
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
+ })
342
356
343
357
return true , nil
344
358
}
@@ -372,22 +386,12 @@ func (c *compactedIndex) ToIndexFile() (shipperindex.Index, error) {
372
386
}
373
387
c .deleteChunks = nil
374
388
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
+ }
391
395
}
392
396
}
393
397
c .indexChunks = nil
0 commit comments