Skip to content

Commit 2a64487

Browse files
authoredMar 26, 2025··
Set compaction level on no-op compactors (#796)
1 parent 8784966 commit 2a64487

File tree

2 files changed

+4
-4
lines changed
  • magefiles
  • resources/services/rhobs-thanos-operator/production

2 files changed

+4
-4
lines changed
 

‎magefiles/cr.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,7 @@ func compactTempProduction() []runtime.Object {
859859
DebugConfig: &v1alpha1.DebugConfig{
860860
AcceptMalformedIndex: ptr.To(true),
861861
HaltOnError: ptr.To(true),
862-
MaxCompactionLevel: ptr.To(int32(3)),
862+
MaxCompactionLevel: ptr.To(int32(1)),
863863
},
864864
StorageSize: v1alpha1.StorageSize("50Gi"),
865865
FeatureGates: &v1alpha1.FeatureGates{
@@ -904,7 +904,7 @@ func compactTempProduction() []runtime.Object {
904904
DebugConfig: &v1alpha1.DebugConfig{
905905
AcceptMalformedIndex: ptr.To(true),
906906
HaltOnError: ptr.To(true),
907-
MaxCompactionLevel: ptr.To(int32(4)),
907+
MaxCompactionLevel: ptr.To(int32(1)),
908908
},
909909
StorageSize: v1alpha1.StorageSize("500Gi"),
910910
FeatureGates: &v1alpha1.FeatureGates{

‎resources/services/rhobs-thanos-operator/production/rhobs.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ objects:
108108
debugConfig:
109109
acceptMalformedIndex: true
110110
haltOnError: true
111-
maxCompactionLevel: 4
111+
maxCompactionLevel: 1
112112
downsamplingConfig:
113113
downsamplingConcurrency: 1
114114
downsamplingEnabled: false
@@ -144,7 +144,7 @@ objects:
144144
debugConfig:
145145
acceptMalformedIndex: true
146146
haltOnError: true
147-
maxCompactionLevel: 3
147+
maxCompactionLevel: 1
148148
downsamplingConfig:
149149
downsamplingConcurrency: 1
150150
downsamplingEnabled: true

0 commit comments

Comments
 (0)
Please sign in to comment.