What Is the Gold Layer?
The Gold Layer is the final, business-ready tier of the Medallion Architecture — the layer where data engineering work culminates in curated, trusted, analytically optimized datasets that business teams use for decision-making. Gold tables are designed around business team needs rather than source system structure: they speak the language of the business, not the language of the database schema.
Unlike Bronze (raw) and Silver (clean but source-structured), Gold tables are purpose-built for specific analytical domains: a Sales Gold layer has revenue metrics pre-computed by region, segment, and time; a Marketing Gold layer has campaign attribution and funnel metrics; an Operations Gold layer has order fulfillment KPIs and SLA metrics. Each Gold dataset is shaped for the access patterns of its consuming business team.
Gold Table Design Principles
Five design principles for effective Gold tables:
- Domain alignment: Design Gold tables around business team domains and their specific analytical questions — not around source system tables or technical schema conventions
- Pre-aggregation: Pre-compute common aggregations (daily, weekly, monthly rollups by key dimensions) that would otherwise require expensive GROUP BY operations at query time
- Star schema: Fact tables (metrics, events) joined with dimension tables (customers, products, time, geography) following the Kimball dimensional model — optimized for BI tool query patterns
- Query-optimized layout: Z-Order by the most common filter dimensions; partition by date at the grain analysts most commonly use (daily for operational, monthly for trend)
- Reflection-ready: Define Dremio Aggregation Reflections on the most common Gold aggregation patterns for sub-second BI performance

Gold Layer and the Semantic Layer
The Gold Layer and semantic layer work together in Dremio:
- Gold Iceberg tables provide the physical data foundation — pre-aggregated, Z-ordered, compacted for read performance
- Dremio Virtual Datasets (VDSs) provide the semantic layer on top of Gold — adding business-friendly names, column descriptions, and business context
- Dremio Reflections defined on Gold tables (or Gold VDSs) pre-compute the most common aggregations for sub-second BI performance
- BI tools (Tableau, Power BI, Looker) connect to Dremio and query Gold VDSs — getting pre-computed results from Reflections without knowing the physical Gold table structure
This architecture delivers sub-second analytical performance on trusted, governed, business-ready Gold data to every BI tool and analyst in the organization.

Summary
The Gold Layer is the analytical crown of the Medallion Architecture — where raw Bronze data, transformed into trusted Silver, is further aggregated and curated into the business-ready datasets that drive organizational decision-making. Designed around domain-specific analytical patterns, optimized with Z-ordering and compaction, and accelerated with Dremio Reflections, Gold tables are the foundation of the semantic layer and the ultimate product of the lakehouse pipeline — delivering sub-second, trusted analytics to every business user in the organization.