What You'll Master Here
Modern patterns govern how a warehouse is built and run; dimensional modeling still governs what the gold layer should look like. Cost is a modelling constraint, not a tuning afterthought.
The classical methodologies (Kimball, Inmon, Data Vault) still decide how to model. What the cloud era changed is what a modelling decision costs: storage became cheap, compute became metered, and the shape you give a table is billed again on every query that touches it.
Work the ladder below before reading on. It is one dashboard question at Kestrel Mobile, a mobile network, and the four decisions this chapter teaches: which layer to read from, how much of history to rebuild, how the table is laid out, and how many columns the query pulls. Each is owned by a later topic, and each multiplies with the others rather than adding to them.
Modern patterns govern how a warehouse is built and run; dimensional modeling still governs what the gold layer should look like. Cost is a modelling constraint, not a tuning afterthought.
This is the stack data engineers work in today. Knowing how the modern patterns relate to dimensional modeling lets you build warehouses that stay cheap and trustworthy, instead of cargo-culting tools.
- ELT
- Extract, Load, then Transform inside the warehouse (vs ETL transforming first).
- medallion
- Layered refinement: bronze (raw) → silver (clean) → gold (curated).
- dbt
- A tool for building warehouse models as version-controlled, tested, dependency-aware SQL.
- semantic layer
- A single governed place where metrics are defined once for all tools.
- Which layer the dashboard readsbronze.cdr_raw (JSON) — 18.0 TiB on disk
- How much of history it rebuildsall 24 months, every run — no reduction — reads every day
- Whether the table is laid out by usage_dateone undivided table — a date filter still reads every byte
- How many of the 40 columns it pullsall 40 (BI extract) — the extract drags every column along
- Per refresh · $112.50
- Every 15 min, one day · $10,800.00
- Priced at BigQuery’s published on-demand rate, $6.25 per TiB scanned. Snowflake and Databricks bill compute-time instead, so the same bytes arrive as a longer warehouse run rather than a line item — the modelling decision is identical either way.
select json_value(payload, '$.plan_code') as plan_code,
sum(cast(json_value(payload, '$.bytes_used') as int64))
from bronze.cdr_raw
group by 1;Thinking modern tools replace dimensional modeling. You build unstructured "just dump it in" warehouses; the gold layer still needs sound models.
Load raw first, transform in the warehouse.
Refine data in explicit layers with tested, versioned SQL.
Define each metric once in a semantic layer.
Modern patterns are about how you build and operate the warehouse; the modeling (stars, grain, SCDs) you learned still governs what the gold layer should look like.
Modern warehouse patterns (ELT, medallion, dbt, OBT, semantic layer) are the operational context for dimensional modeling, not a replacement for it — and each one carries a cost you can read off the query.
