Record-Reality Divergence¶
Core Idea¶
An information-layer record of an external state diverges from the actual state it describes while remaining the authoritative input to downstream decisions. The record is the map, the world the territory; decisions consume the map, and the longer the update cadence, the more it diverges and the more those decisions miscarry. The essential framing: every authoritative record is a cache, and every cache requires invalidation.
How would you explain it like I'm…
The Old Map
When the List Goes Stale
The Stale Cache
Broad Use¶
- Retail inventory: phantom inventory, where stock records drift from physical counts and replenishment under- or over-orders.
- Software supply chain: lockfiles pointing at yanked or replaced registry artefacts.
- Geographic information systems: dispatch maps showing roads that no longer exist, consumed by routing.
- Public-health registries: reported counts diverging from true incidence through reporting lag.
- Government registries: stale voter rolls, property records, and licences feeding eligibility decisions.
- Patient records: allergy and medication lists drifting from clinical reality.
- Access control: who-has-access diverging from actual employment as changes propagate slowly.
Clarity¶
Separates three fused failures — data quality (wrong when entered), measurement noise (statistically uncertain), and divergence (once accurate, but reality moved) — each with a different fix.
Manages Complexity¶
Compresses phantom inventory, stale registries, drifted records, and expired permissions into one pattern with reusable parts (external state, record, cadence, consumption, direction) and a sorted intervention space — increase cadence, add exception-detection, change source-of-truth, switch to write-through, surface freshness metadata.
Abstract Reasoning¶
Trains the reasoner to treat any record as a cache without an invalidation strategy, and to recognize that cadence and stakes scale together, that the divergence direction sets the failure mode, and that authoritativeness is a claim of currency the system may not be entitled to make.
Knowledge Transfer¶
- Architecture → registries: the cache-invalidation framework (read-through, write-back, TTL, dirty bits) transfers cleanly to government-registry maintenance.
- Retail → security: cycle-counting discipline ports into periodic access-control audits with the same cadence-versus-cost trade-off.
- Clinical → finance: medication-reconciliation discipline transferred into financial-position reconciliation, cross-checking records against reality at high-stakes transitions.
Example¶
In a warehouse, shrinkage and mis-scans make the ERP record overstate real stock, so the automated replenishment algorithm under-orders, producing silent stock-outs the system cannot see — invisible until a customer finds an empty shelf the record says is full.
Relationships to Other Abstractions¶
Current abstraction Record-Reality Divergence Prime
Parents (1) — more general patterns this builds on
-
Record-Reality Divergence is a kind of, typical Proxy-Target Divergence Prime
A stale authoritative record is a proxy that has decoupled from the reality (target) it describes while still driving decisions, fitting the named-children pattern (alongside Goodhart, sensor drift, etc.).
Children (2) — more specific cases that build on this
-
Safety-Stock Illusion Domain-specific is part of Record-Reality Divergence
Safety-stock illusion contains a report-to-operating-reality divergence in which nominal coverage remains authoritative while effective protection has collapsed.
-
Phantom Inventory Domain-specific is a decomposition of Record-Reality Divergence
Removing warehouse and inventory vocabulary from phantom inventory leaves an authoritative record that overstates reality and corrupts downstream decisions until reconciliation.
Hierarchy path (1) — routes to 1 parentless root
- Record-Reality Divergence → Proxy-Target Divergence → Proxy–Target Fidelity → Representation → Abstraction
Not to Be Confused With¶
- Record-Reality Divergence is not Provenance because provenance documents where a record came from, whereas divergence concerns whether the record is currently accurate; a fully-traceable record can be badly stale.
- Record-Reality Divergence is not Traceability because traceability is the ability to follow links among records, whereas divergence is the gap between record and present reality.
- Record-Reality Divergence is not Reference Standard Decay because standard decay corrupts the shared yardstick (mis-scaling everything coherently), whereas divergence corrupts an individual cached value idiosyncratically.