CONCEPT Cited by 1 source
Unified metadata schema¶
Definition¶
Unified metadata schema is the architectural principle of collapsing a multi-layer metadata hierarchy — where each layer maintains its own metadata store and requires separate lookups — into a single flat schema backed by a single store, enabling O(1) path-to-address resolution instead of cascading multi-hop lookups.
Motivation at Meta¶
Meta's legacy BLOB-storage architecture evolved organically into multiple stateful metadata layers (namelayer, volumeslayer, containerlayer), each requiring separate lookups — some crossing regions. For AI workloads needing millisecond access to flash, the cumulative metadata latency (hundreds of milliseconds per request) was a showstopper.
Resolution¶
The new architecture collapses all metadata into one flat schema on ZippyDB, achieving O(1) lookup per chunk to map a path to (blockId, offset, size) tuples — a step-function improvement.
(Source: sources/2026-07-01-meta-ai-storage-blueprint-at-scale)
Broader Applicability¶
The concept generalizes beyond storage: any system whose organic growth has produced cascading metadata lookups across N layers (each adding latency and failure modes) can benefit from schema unification when the workload's latency requirements tighten by an order of magnitude.
Seen in¶
- sources/2026-07-01-meta-ai-storage-blueprint-at-scale — canonical instance at Meta BLOB storage