CockroachDB MVCC garbage growing: tombstones, GC lag, and silent disk growth
MVCC garbage accumulation produces no errors, no latency spikes, and no user-visible symptoms until the disk fills. By then, you may be hours away from a compaction death spiral that takes the node or cluster offline.
CockroachDB retains old MVCC versions of every key until garbage collection removes them after the GC TTL window (default 25 hours). Deletes and updates create tombstones: markers that a key was removed at a specific timestamp. These tombstones persist in the LSM tree until MVCC GC runs and Pebble compaction physically removes them downstream. If anything blocks that cleanup, dead data accumulates silently.
The most common blocker is a protected timestamp record. CDC changefeeds, backup jobs, and certain long-running operations create these records to prevent GC from reclaiming versions they still need. If the owning job stalls, fails, or is paused without releasing the record, MVCC GC cannot progress past the protected timestamp. Garbage accumulates without bound.
This article covers how to detect MVCC garbage growth early, identify the blocker, and reclaim space before disk pressure cascades into a storage failure.
What this means
MVCC garbage is dead data: old key versions and tombstones that have aged past the GC TTL but have not yet been physically removed. The on-disk footprint of a range includes both live bytes (the current, readable versions) and total bytes (live plus garbage). When garbage grows, the gap between live bytes and total bytes widens.
The MVCC GC queue processes ranges periodically. For each range, it computes a GC threshold: the current time minus the GC TTL. It then checks for protected timestamp records covering that range. If a protected timestamp exists, the effective GC threshold is pushed forward to the protected timestamp, meaning GC cannot reclaim anything older than that point. The garbage below the protected timestamp stays on disk.
This is by design for active backups and changefeeds: they need historical versions to produce correct incremental output. The problem arises when the owning job is no longer making progress but has not released its protected timestamp. Common scenarios include a paused changefeed, a backup stuck retrying against an unreachable destination, or a schema change job in a reverting state.
The failure cascade is predictable: garbage grows, disk space shrinks, compaction eventually cannot find enough free space to run, and the LSM enters a death spiral where write stalls compound with read amplification.
flowchart TD
A["Deletes / updates create tombstones"] --> B["MVCC garbage accumulates past GC TTL"]
B --> C{"Protected timestamp blocking GC?"}
C -->|No| D["MVCC GC reclaims old versions"]
D --> E["Pebble compaction removes tombstones"]
E --> F["Disk space stabilizes"]
C -->|Yes| G["GC threshold pushed forward"]
G --> H["Garbage bytes grow without bound"]
H --> I["Disk fills silently"]
I --> J["Compaction starved for space"]
J --> K["L0 sublevels climb, write stalls"]Common causes
| Cause | What it looks like | First thing to check |
|---|---|---|
| Stalled or paused changefeed | changefeed_max_behind_nanos growing or flat at a high value; jobs_changefeed_protected_age_sec climbing past hours | SELECT * FROM crdb_internal.jobs WHERE job_type = 'CHANGEFEED' AND status NOT IN ('succeeded','canceled') |
| Hung backup job | Backup job in running or reverting state far beyond expected duration; protected timestamp age growing | SELECT job_id, job_type, status, created FROM crdb_internal.jobs WHERE job_type IN ('BACKUP', 'RESTORE') AND status NOT IN ('succeeded','canceled') |
| GC TTL too long for churn rate | High delete/update volume with 25-hour default TTL; garbage bytes large but stable (not growing unboundedly) | Check gc.ttlseconds zone config for affected tables |
| Write churn outpacing GC processing | Garbage growing during peak delete/update bursts; stabilizes off-peak; no protected timestamps present | Compare sql_delete_count and sql_update_count rates against historical baseline |
| MVCC GC queue not processing ranges | Garbage growing across all ranges regardless of TTL; no protected timestamps; GC queue appears stuck | Check admission control store-write queue depth; review CockroachDB version for known GC bugs |
Quick checks
These commands are safe, read-only, and can be run during production incidents.
# Check disk space per store from Prometheus metrics
curl -s http://localhost:8080/_status/vars | grep -E 'capacity_(used|available)'
# Check protected timestamp record count and age
curl -s http://localhost:8080/_status/vars | grep -E 'protected_record_count|protected_age_sec'
# Check changefeed lag and job status
curl -s http://localhost:8080/_status/vars | grep -E 'changefeed_max_behind|changefeed_error_retries'
<!-- TODO: verify exact metric name for running changefeed count, grep pattern above may miss it -->
# Check L0 sublevels (downstream storage health)
curl -s http://localhost:8080/_status/vars | grep storage_l0_sublevels
# Check read amplification (tombstones inflate this)
<!-- TODO: verify whether CockroachDB still exposes rocksdb_read_amplification or renamed to storage_read_amplification after Pebble migration -->
curl -s http://localhost:8080/_status/vars | grep -E 'rocksdb_read_amplification|storage_read_amplification'
For protected timestamp and job diagnostics via SQL (admin-only, use for diagnosis not continuous monitoring):
-- Find changefeed and backup jobs that may be holding protected timestamps
SELECT job_id, job_type, status, running_status, created
FROM crdb_internal.jobs
WHERE job_type IN ('CHANGEFEED', 'BACKUP', 'RESTORE')
AND status NOT IN ('succeeded', 'canceled')
ORDER BY created DESC;
-- Check MVCC garbage vs live bytes per range (expensive, use sparingly)
-- Garbage = (key_bytes + val_bytes) - live_bytes
SHOW RANGES FROM TABLE <your_table> WITH DETAILS;
How to diagnose it
Confirm garbage is the problem, not live data growth. Pull
capacity_usedandcapacity_availableper store. If disk is growing but you know data volume is stable, garbage is the likely cause. If you have access toSHOW RANGES WITH DETAILS, comparelive_bytesagainst total bytes (key_bytes + val_bytes). A large gap means significant garbage.Check for protected timestamp records. Monitor
spanconfig_kvsubscriber_protected_record_count. If the count is nonzero or growing, checkjobs_changefeed_protected_age_secfor age. Protected age above 24 hours with no active backup or CDC operation completing is a red flag.Identify the owning job. Query
crdb_internal.jobsfor any job inrunning,pause-requested, orrevertingstate that matches the protected timestamp age. Changefeeds are the most common culprit. A changefeed that fell behind the GC TTL window will hold a protected timestamp to avoid losing data it has not yet emitted.Rule out GC TTL mismatch. If no protected timestamps exist, check whether the default 25-hour TTL is too long for your churn rate. High-volume delete workloads with a long TTL will naturally accumulate more garbage before GC runs. This is expected behavior, not a bug, but it can consume surprising amounts of disk.
Check for version-specific GC bugs. On v23.2.x, there is a known issue (#136101) where MVCC GC does not run after certain schema changes because the GC hint is not set. The GC queue may estimate next GC in thousands of days. If garbage is growing across all ranges and no protected timestamps are present, check whether your version is affected.
Verify the MVCC GC queue is not being starved by admission control. As of v23.2, MVCC GC is subject to IO admission control. If the
store-writeadmission queue is overloaded, GC work may be deprioritized behind foreground writes. Checkadmission.io.overloadand admission wait durations.
Metrics and signals to monitor
| Signal | Why it matters | Warning sign |
|---|---|---|
capacity_available per store | Tracks how much headroom remains before compaction fails | Below 20% with downward trend |
spanconfig_kvsubscriber_protected_record_count | Number of records preventing GC | Growing or nonzero when no backup/CDC is expected |
jobs_changefeed_protected_age_sec | Age of the oldest changefeed protected timestamp | Above 24 hours indicates a stalled or slow changefeed |
changefeed_max_behind_nanos | Maximum lag across all changefeeds | Growing sustained lag means the feed cannot keep up |
changefeed_error_retries | Retry attempts on changefeed errors | Sustained nonzero rate indicates destination or config issues |
storage_l0_sublevels per store | Downstream effect: tombstones inflate L0 if compaction is stressed | Above 10 sustained means compaction is falling behind |
rocksdb_read_amplification | Tombstones in lower LSM levels inflate read cost | Above 25 sustained, especially after large delete operations |
sql_delete_count, sql_update_count | Delete/update volume drives tombstone creation | Sustained rates well above baseline correlate with garbage growth |
Fixes
Stalled or paused changefeed holding a protected timestamp
This is the most common cause. If a changefeed has fallen behind or is paused, its protected timestamp prevents GC.
- If the changefeed is paused and you no longer need it, cancel it with
CANCEL JOB <job_id>. This releases the protected timestamp. - If the changefeed is running but lagging, investigate the sink (Kafka, cloud storage, webhook). Network issues, destination throttling, or schema mismatches cause backpressure.
- CockroachDB has a
gc_protect_expires_aftersetting on jobs that eventually releases stale protected timestamps and cancels the job. If the changefeed is truly stuck, this is the automatic release mechanism, but it may take longer than your disk headroom allows.
Hung backup job
A backup stuck retrying against an unreachable destination holds a protected timestamp for the duration of the backup.
- Check the backup destination connectivity.
- If the job is in
revertingstate, it is rolling back and will release the protected timestamp when revert completes. Monitor progress. - If the job is stuck in
runningwith no progress, consider canceling it if you have a recent successful backup within your RPO window.
GC TTL too long for the workload
If garbage is accumulating because the 25-hour default TTL is too conservative for a high-churn workload, you can lower gc.ttlseconds at the zone level for specific tables or databases.
-- Lower GC TTL for a high-churn table (use with caution)
ALTER TABLE <table> CONFIGURE ZONE USING gc.ttlseconds = 3600;
Warning: Lowering GC TTL reduces the window for point-in-time reads, incremental backups, and changefeed recovery. If you run incremental backups or CDC on the table, the TTL must be longer than the backup interval or changefeed checkpoint interval. Otherwise, incremental backups will fail because the required MVCC history has been garbage collected.
Emergency: manual GC enqueue
For cases where GC is not running on specific ranges (known bug or stuck queue), the operational FAQ documents an emergency procedure:
- Temporarily lower
gc.ttlsecondsfor the affected table (e.g., to 600 seconds). - Manually enqueue ranges through the MVCC GC queue with
SkipShouldQueueto force processing.
This is a disruptive operation. It should only be used when disk pressure is critical and you understand the consequences.
Prevention
- Monitor protected timestamp age alongside changefeed lag. A growing
jobs_changefeed_protected_age_secwith a lagging changefeed is the earliest warning. Alert on protected age above 24 hours. - Track the ratio of live bytes to total bytes per store. If you have access to
SHOW RANGES WITH DETAILS, garbage is(key_bytes + val_bytes) - live_bytes. A growing gap means GC is falling behind. - Set changefeed checkpoint intervals shorter than the GC TTL. If a changefeed checkpoints less frequently than the GC window, it will always hold a protected timestamp close to the TTL boundary, leaving little GC headroom.
- Review backup frequency against GC TTL. Incremental backups require MVCC history from the last backup. If the interval between incremental backups exceeds the GC TTL, either lower the backup interval or raise the TTL with a protected timestamp backup.
- Upgrade to benefit from tombstone improvements. Size-carrying point tombstones (v23.2, PR #104539) help Pebble reclaim disk space more efficiently after MVCC GC by embedding the deleted KV pair size in the tombstone. This improves compaction space estimates. MVCC range tombstones (enabled by default in v23.1) allow bulk deletions to write a single range tombstone instead of billions of point tombstones.
- Watch for schema-change-related GC stalls on v23.2.x. If GC does not progress after a DROP or schema change, check whether the GC hint is empty and consider manual enqueue.
How Netdata helps
Netdata surfaces several signals that, when correlated, shorten the diagnosis of MVCC garbage growth:
- Per-second disk capacity metrics (
capacity_used,capacity_available) let you spot the divergence between live data growth and total disk consumption before the 20% threshold is breached. - Protected timestamp record count and age are monitored continuously, so a stalled changefeed or hung backup is visible as a growing protected age, not discovered when the disk is full.
- Changefeed lag and error metrics correlate directly with protected timestamp growth. A changefeed with growing
changefeed_max_behind_nanosand risingjobs_changefeed_protected_age_secis the textbook precursor to silent disk growth. - L0 sublevel count and read amplification show the downstream storage impact. If garbage is inflating tombstone counts, these metrics degrade before write stalls hit.
- ML-based anomaly detection flags unusual patterns in disk growth rate, protected timestamp age, or changefeed lag that static thresholds miss. This is valuable for this failure mode because it is slow and silent by nature.
Netdata’s CockroachDB monitoring with Netdata brings these signals together with per-second metrics and ML anomaly detection.
Related guides
- CockroachDB clock_offset_meannanos high: catching clock drift before self-termination
- CockroachDB clock skew cascade: how shared NTP drift causes quorum loss
- CockroachDB clock synchronization error: this node is more than 500ms away from at least half of the known nodes
- CockroachDB compaction backlog growing: when Pebble can’t keep pace with writes
- CockroachDB context deadline exceeded: timeouts, slow ranges, and overload
- CockroachDB detecting hot ranges: per-range QPS, CPU asymmetry, and the Hot Ranges page
- CockroachDB disk space running out: capacity_available trends and the 20% rule
- CockroachDB hot range bottleneck: one leaseholder saturated while the cluster idles
- CockroachDB intent accumulation cascade: abandoned transactions and intentcount growth
- CockroachDB storage_l0_sublevels climbing: the earliest warning of write stalls
- CockroachDB LSM compaction death spiral: L0 sublevels, read amplification, and write stalls
- CockroachDB monitoring checklist: the signals every production cluster needs






