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

CauseWhat it looks likeFirst thing to check
Stalled or paused changefeedchangefeed_max_behind_nanos growing or flat at a high value; jobs_changefeed_protected_age_sec climbing past hoursSELECT * FROM crdb_internal.jobs WHERE job_type = 'CHANGEFEED' AND status NOT IN ('succeeded','canceled')
Hung backup jobBackup job in running or reverting state far beyond expected duration; protected timestamp age growingSELECT 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 rateHigh 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 processingGarbage growing during peak delete/update bursts; stabilizes off-peak; no protected timestamps presentCompare sql_delete_count and sql_update_count rates against historical baseline
MVCC GC queue not processing rangesGarbage growing across all ranges regardless of TTL; no protected timestamps; GC queue appears stuckCheck 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

  1. Confirm garbage is the problem, not live data growth. Pull capacity_used and capacity_available per store. If disk is growing but you know data volume is stable, garbage is the likely cause. If you have access to SHOW RANGES WITH DETAILS, compare live_bytes against total bytes (key_bytes + val_bytes). A large gap means significant garbage.

  2. Check for protected timestamp records. Monitor spanconfig_kvsubscriber_protected_record_count. If the count is nonzero or growing, check jobs_changefeed_protected_age_sec for age. Protected age above 24 hours with no active backup or CDC operation completing is a red flag.

  3. Identify the owning job. Query crdb_internal.jobs for any job in running, pause-requested, or reverting state 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.

  4. 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.

  5. 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.

  6. 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-write admission queue is overloaded, GC work may be deprioritized behind foreground writes. Check admission.io.overload and admission wait durations.

Metrics and signals to monitor

SignalWhy it mattersWarning sign
capacity_available per storeTracks how much headroom remains before compaction failsBelow 20% with downward trend
spanconfig_kvsubscriber_protected_record_countNumber of records preventing GCGrowing or nonzero when no backup/CDC is expected
jobs_changefeed_protected_age_secAge of the oldest changefeed protected timestampAbove 24 hours indicates a stalled or slow changefeed
changefeed_max_behind_nanosMaximum lag across all changefeedsGrowing sustained lag means the feed cannot keep up
changefeed_error_retriesRetry attempts on changefeed errorsSustained nonzero rate indicates destination or config issues
storage_l0_sublevels per storeDownstream effect: tombstones inflate L0 if compaction is stressedAbove 10 sustained means compaction is falling behind
rocksdb_read_amplificationTombstones in lower LSM levels inflate read costAbove 25 sustained, especially after large delete operations
sql_delete_count, sql_update_countDelete/update volume drives tombstone creationSustained 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_after setting 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 reverting state, it is rolling back and will release the protected timestamp when revert completes. Monitor progress.
  • If the job is stuck in running with 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:

  1. Temporarily lower gc.ttlseconds for the affected table (e.g., to 600 seconds).
  2. Manually enqueue ranges through the MVCC GC queue with SkipShouldQueue to 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_sec with 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_nanos and rising jobs_changefeed_protected_age_sec is 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.