You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(clustered): clarify compactor scaling guidance for CPU and memory
Addresses customer confusion where scaling CPU alone doesn't improve
compactor performance. Compactor concurrency scales based on memory
allocation, not CPU count, so both resources should be scaled together.
Closesinfluxdata/DAR#514
add related links
fix(clustered): correct anchor link in scale-cluster documentation
Fix broken internal anchor link from #rrecommended-scaling-strategies-per-component
to #recommended-scaling-strategies-per-component (removed extra 'r').
This was used to test the improved link-checker anchor validation functionality.
fix(clustered): correct anchor link in scale-cluster documentation
Fixes broken anchor link #rrecommended-scaling-strategies-per-component
to the correct #recommended-scaling-strategies-per-component
- https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#requests-and-limits, Kubernetes resource requests and limits
15
17
---
16
18
@@ -559,11 +561,14 @@ concurrency demands or reaches the hardware limits of your underlying nodes.
559
561
560
562
### Compactor
561
563
562
-
- **Recommended**: Maintain **1 Compactor pod** and use [vertical scaling](#vertical-scaling) (especially
563
-
increasing the available CPU) for the Compactor.
564
+
- **Recommended**: Maintain **1 Compactor pod** and use [vertical scaling](#vertical-scaling) for the Compactor.
565
+
Scale CPU and memory resources together, as compactor concurrency settings scale based on memory, not CPU count.
564
566
- Because compaction is a compute-heavy process, horizontal scaling increases compaction throughput, but not as
565
567
efficiently as vertical scaling.
566
568
569
+
> [!Important]
570
+
> When scaling the Compactor, scale CPU and memory resources together.
571
+
567
572
### Garbage collector
568
573
569
574
The [Garbage collector](/influxdb3/clustered/reference/internals/storage-engine/#garbage-collector) is a lightweight process that typically doesn't require
0 commit comments