Skip to content

Commit

Permalink
Add mitigations for MimirBucketIndexNotUpdated alerts to runbook
Browse files Browse the repository at this point in the history
Add potential mitigations for stale bucket index alerts to the runbook.

Related #7879

Signed-off-by: Nick Pillitteri <[email protected]>
  • Loading branch information
56quarters committed Apr 11, 2024
1 parent b53ab29 commit c68fdd4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/sources/mimir/manage/mimir-runbooks/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,25 @@ How to **investigate**:
- Ensure the compactor is successfully running
- Look for any error in the compactor logs
- Check how long compactor cleanup tasks have been failing for
```
sum(rate(cortex_compactor_block_cleanup_failed_total{namespace="<namespace>"}[$__rate_interval]))
```
- Check for object storage failures for the compactor
```
sum(rate(thanos_objstore_bucket_operation_failures_total{namespace="<namespace>", component="compactor"}[$__rate_interval]))
```
How to **fix** it:
- Temporarily increase the tolerance for stale bucket indexes on queriers:
```
-blocks-storage.bucket-store.bucket-index.max-stale-period=2h
```
- Temporarily increase the frequency at which compactors perform cleanup tasks like updating bucket indexes:
```
-compactor.cleanup-interval=5m
```
### MimirInconsistentRuntimeConfig
Expand Down

0 comments on commit c68fdd4

Please sign in to comment.