Skip to content

Commit 2c8293b

Browse files
committed
CHANGELOG
Signed-off-by: Daniel Deluiggi <[email protected]>
1 parent 8db1895 commit 2c8293b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
* [ENHANCEMENT] Parquet Storage: Add some metrics for parquet blocks and converter. #6809 #6821
4343
* [ENHANCEMENT] Compactor: Optimize cleaner run time. #6815
4444
* [ENHANCEMENT] Parquet Storage: Allow percentage based dynamic shard size for Parquet Converter. #6817
45+
* [ENHANCEMENT] Compactor: Split cleaner logic. #6827
4546
* [BUGFIX] Ingester: Avoid error or early throttling when READONLY ingesters are present in the ring #6517
4647
* [BUGFIX] Ingester: Fix labelset data race condition. #6573
4748
* [BUGFIX] Compactor: Cleaner should not put deletion marker for blocks with no-compact marker. #6576

pkg/compactor/blocks_cleaner.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,6 @@ func (c *BlocksCleaner) emitUserMetrics(ctx context.Context, userLogger log.Logg
827827

828828
remainingCompactions := 0
829829
inProgressCompactions := 0
830-
completedCompaction := 0
831830
var oldestPartitionGroup *PartitionedGroupInfo
832831
defer func() {
833832
c.remainingPlannedCompactions.WithLabelValues(userID).Set(float64(remainingCompactions))
@@ -847,9 +846,6 @@ func (c *BlocksCleaner) emitUserMetrics(ctx context.Context, userLogger log.Logg
847846
if oldestPartitionGroup == nil || partitionedGroupInfo.CreationTime < oldestPartitionGroup.CreationTime {
848847
oldestPartitionGroup = partitionedGroupInfo
849848
}
850-
if extraInfo.status.IsCompleted {
851-
completedCompaction += len(partitionedGroupInfo.Partitions)
852-
}
853849
}
854850
}
855851

0 commit comments

Comments
 (0)