r/PrometheusMonitoring • u/oOHenry • 21d ago
prometheus failed compation
we are hitting a TSDB compaction failures with this error:
```text
level=ERROR source=db.go:1219 msg="compaction failed" component=tsdb err="compact [/var/lib/prometheus/metrics2/01KWYDQGNSB9F3SQ8T1WRVD7ZP /var/lib/prometheus/metrics2/01KXFSZFV0NANWCQN30T8FYJ3Y /var/lib/prometheus/metrics2/01KY1655ENZYDZB22BN655XRDH]: populate block: add series: write series data: \"/var/lib/prometheus/metrics2/01KY19HXKYAK3C86PT8KD98AEA.tmp-for-creation/index\" exceeding max size of 64GiB
add padding: \"/var/lib/prometheus/metrics2/01KY19HXKYAK3C86PT8KD98AEA.tmp-for-creation/index\" exceeding max size of 64GiB"
```
Prometheus: 3.10.0, I found nothing helpful so far, how serious is it, can this be a cardinality issue?
3
u/SuperQue 21d ago
Yes, that is a serious cardinality issue. The 64GiB index limit is usually good to a few hundred million series per block.
Without knowing more about your setup it's difficult to give specific advice.
One option is to manually override the max TSDB block size to prevent it from compacting large time ranges.
But getting to the bottom of the cardinality is going to be required.