learn-data-modeling-with-phoebe / Leader session 4 of 6
Learn Data Modeling with Phoebe · Leader track · Session 4 of 6

The tooling landscape

Vendor logos change every eighteen months. The four decisions underneath them have not changed in a decade. This session reads the market as four categories rather than a list of products: where to draw and version the model, where to transform and test it, where to make it discoverable, and where a metric gets its single definition. For each one you get the problem it solves, the signal you actually need it, what it costs in adoption rather than licence, and the failure mode of buying it too early. No code to write.

🟡 Leader track C-level · heads of data · stakeholders No code to write 45 min
0-3 · Frame 3-20 · The four categories 20-32 · Adoption cost and the decision frame 32-45 · Audit, build vs buy, Q&A
Part 0

Read the market as decisions, not logos

You will be asked to approve tooling spend for a modeling practice, probably by someone who has already fallen for a good demo. The demo is not the problem. The problem is that the request will arrive named after a product, and a product name tells you nothing about whether you have the problem it solves. Reframed as a category, the same request becomes answerable in one meeting: which of the four things does this buy us, do we have the signal that we need that thing, and what will it cost us in behaviour rather than in licence fees?

Be honest about the shelf life of specifics. This market consolidates and rebrands constantly, features move between categories, and open-source and commercial options trade places. The categories are the durable part, and so are the conventions inside them. Where a product is named on this page it is named as an example of a category, never as a recommendation, and no pricing or feature claim appears anywhere, because either would be out of date before you finished reading it.

Examples come from this course's own Bazaar dataset: a marketplace with 12 merchants trading from 2026-04-01 to 2026-06-29 in SGD. Its numbers were produced by running the code the builder track ships, so the tooling arguments here are anchored to something checkable rather than to a vendor's slide.

Live - discussed in session Self-study - read after class ◎ Discussion exercise - run it with your team Sources covered
★ What you walk out with today Four categories you can map any vendor onto in thirty seconds, the specific signal that tells you each one is now worth buying, the adoption cost of each expressed as behaviour rather than money, three rules for deciding between standardising and buying, a build-versus-buy question per layer, and a "you do not need this yet if" list you can hold up in a budget review.
Part 1 · the durable part of the market

Four categories, and what each one enforces 17 min live

A modeling practice needs four things from its tooling, and only four. Each sits on top of the one below it, and each one is worth buying only because it enforces something a human being reliably forgets. That is the whole test. A tool that merely enables good behaviour is a tool your team will stop using in the second busy quarter. A tool that makes bad behaviour fail is one they cannot stop using.

Four layers, bottom to top. Each one enforces something people forget. 4 · One definition semantic layer Enforces: one metric has one expression, read by BI and by any AI analyst Without it: every tool redefines revenue, and the definitions drift apart quietly 3 · Discoverable catalog / metadata layer Enforces: a table's owner, grain and freshness are published, not tribal Without it: the answer to "who owns this" is whoever has been here longest 2 · Tested on change transformation and testing Enforces: a change that breaks a promised column or grain fails before it ships Without it: breakage is discovered downstream, by a stakeholder, in a meeting 1 · Drawn and versioned ERD and diagram tooling Enforces: the model is one shared artifact rather than four people's memory Without it: onboarding is oral history and every design review restarts from zero The stack is also the adoption order. Layer 2 is the one most teams should own first, because it is the only layer that can make a bad change fail rather than merely be visible. Layer 4 bought before layers 1 and 2 exist does not create agreement about metrics; it encodes whatever disagreement you already had, and makes it harder to see.
🔍 Click to zoom - the four layers, what each enforces, and the order to adopt them
CategoryThe problem it solvesThe signal you actually need itFailure mode of buying it too early
1 · Draw and version the model
ERD tooling
Nobody can see the whole model at once, so design reviews argue about what exists rather than what should. Two engineers describe the same relationship differently in the same meeting, or a new joiner takes more than a week to find out what joins to what. A beautiful diagram that nobody regenerates. It is a lie within a quarter, and worse than no diagram because people trust it.
2 · Transform and test
models as versioned code
Transformation logic lives in scattered scripts and BI tools, so nobody knows what a change will break until it breaks. More than one person edits transformation logic, or a change has broken a downstream report without anyone noticing until a stakeholder did. Rarely too early, which makes it the exception. The real risk is adopting the tool while skipping the layering convention and the tests, which buys the folder structure and none of the enforcement.
3 · Catalog and metadata
discoverability
Owner, grain and freshness live in people's heads, so every question routes through the same two long-serving employees. The same "who owns this table and is it fresh" question is asked in chat every week, or an analyst has built something on a table that was deprecated. An empty catalog with 90% of descriptions blank. It becomes a place where documentation is not, and it teaches the team that the catalog is useless.
4 · Semantic layer
one metric, one definition
Each consuming tool defines revenue for itself, so BI, finance and any AI analyst disagree by construction. Two dashboards give different values for the same word, or you are being asked to fund natural-language querying over your data. You encode the disagreement instead of resolving it. Metrics nobody has defined get a canonical home and now look official.
LiveLayers 1 and 2 · the diagram and the enforcement6 min

Layer 1, drawing and versioning the model. The category covers everything from free browser-based diagram tools to commercial data modelers to the diagram-as-text formats that live in a code repository. They are cheap, and the choice barely matters. What matters is one property, and it is the property most teams do not check: can the diagram be regenerated from the actual database rather than maintained by hand?

A hand-maintained diagram is accurate on the day it is drawn and decorative thereafter. It does not fail loudly. It quietly stops matching reality, one shipped change at a time, and the first person to trust it is misled precisely because it looks authoritative. That is the honest observation to hold on to: a diagram nobody regenerates is a lie within a quarter, and a lie you have paid for and printed. So the question to ask about any candidate is not what it can draw, but what it does on the Tuesday after somebody adds a column.

Layer 2, transformation and testing. This is the layer worth real attention, because it is the only one that can make a bad change fail rather than merely be visible. The convention it carries is more valuable than any product in it. The widely used shape, popularised by dbt and now the default across the industry, is three layers of models held as version-controlled code:

  • Staging. One model per source table, doing nothing but renaming, casting and cleaning. Boring on purpose, and the boredom is the feature: it means source changes are absorbed in exactly one place.
  • Intermediate. The joins and reshaping nobody wants to write twice. This is where grain changes happen, deliberately and once, instead of being re-derived in every report.
  • Marts. The tables consumers actually query, each with a declared grain. Bazaar's marts are one row per merchant per day, one row per date and hour, one row per day: three grains, three questions, no ambiguity.

On top of that sits the piece worth the most to you as an approver: the model contract. A contract declares what a model promises - which columns exist, of what type, at what grain, never null - and turns a breach into a build failure rather than a conversation. That is the difference between documentation and governance. Documentation can be wrong without anything happening. A contract cannot.

The question that separates the two Ask of any candidate in layer 2: "if someone renames a column that a downstream report depends on, what happens?" If the answer is "the report breaks and someone tells us", you are buying a folder structure. If the answer is "the build fails before it ships", you are buying enforcement. Only the second one is worth an adoption programme.
LiveLayers 3 and 4 · discoverability and one definition6 min

Layer 3, the catalog or metadata layer. The problem is genuinely real: in most organisations the owner, grain and freshness of a table are tribal knowledge, which means every question routes through the same two long-serving people, and their departure is a business risk you have not written down. The category runs from open-source metadata platforms to the catalog features now bundled into warehouse and BI products. Again the product choice matters less than one property: how much of the catalog populates itself?

Lineage, schemas, freshness timestamps and query popularity can be harvested automatically. Ownership, grain sentences and business meaning cannot. So a catalog is a machine for making the automatic part free and the manual part visible, and its failure mode is entirely about the manual part. An empty catalog is worse than no catalog: it trains the whole team that looking things up there is a waste of a click, and that lesson takes years to unlearn. Fund a catalog with a named backfill for a defined slice, or do not fund it yet.

Layer 4, the semantic layer. One metric, one expression, one grain, one caveat, read by every consumer. Session a3 argued why this must live as data rather than as a wiki page; this is the purchase decision that follows. The category includes standalone semantic or metrics layers, the semantic modelling built into some BI platforms, and the increasingly common pattern of holding definitions as a governed table in the warehouse itself, which costs nothing in licence and quite a lot in discipline.

The evidence that it pays is unusually crisp on this course's own data. Bazaar's semantic layer is 13 metric definitions, each with an expression, a grain and a caveat. Given the same tables and the same questions, an AI analyst scored 0 of 20 standard business questions without those definitions and 20 of 20 with them. Nothing about the data changed. That is the honest business case for layer 4, and it is a stronger one than any demo, because it is a measurement rather than a promise.

The trap is sequencing. A semantic layer is a place to put agreements. If you have no agreements, it becomes a place where disagreements look official, and the fact that they are now centralised makes them harder to notice rather than easier. What to fund specifically so that natural-language querying works is session a6, and it is worth taking before signing anything in this layer.

Self-studyWhere the fifth and sixth categories fit3 min read

Two adjacent categories will be pitched to you in the same conversations, and it is worth knowing why they are not on this list.

  • Data quality and observability tools. These monitor for anomalies, volume drops and freshness misses. Valuable, and genuinely different from layer 2: a testing layer asserts what must be true and fails the build, while an observability tool watches what usually happens and alerts on surprise. Buy the first one first. Alerts on a model with no contracts produce a stream of notifications that nobody can act on, and the team learns to close them.
  • Orchestration and pipeline tooling. Scheduling, dependencies, retries, backfills. This is the operational layer beneath everything here, and it is a different course entirely. Modeling decisions do not depend on it, and it will not fix a single problem on this page.

Both are frequently sold as solutions to modeling problems. Neither is. The test is the same one you apply everywhere else: name the human failure it enforces against. Observability enforces against nobody noticing. Orchestration enforces against things not running. Neither enforces against a metric meaning two things, which is the problem you actually have.

Part 2 · the cost that is not on the invoice

What it costs in adoption, not licence 6 min live

Every one of these four categories has a free or nearly free option, and every one of them can still fail expensively. That is because the licence is the small number. The real cost is behavioural: the conventions people must agree to, the review step they must now pass through, the fields somebody must fill in, and the artifacts somebody must keep true. Approve the licence and skip the behaviour, and you have bought a folder.

Two cost lines. Only one of them appears on the invoice. On the invoice Seats, or compute, or nothing at all Negotiated once, forecastable Approved in a single meeting Reversible: you can stop paying This is the number the request is about Not on the invoice Conventions the team must agree first A review step every change now passes Fields a named person must fill in Backfill of everything that exists today This is the number that decides the outcome The decay test: what one quarter does to an artifact Maintained by hand Correct on day one. Every shipped change makes it slightly false, and nothing anywhere reports that. By month three it misleads with authority, because it still looks finished. Regenerated from the system Correct on every day it runs, because the artifact is an output rather than a document. Staleness becomes impossible rather than merely discouraged, and no one has to remember anything. The buying rule that falls out of this: skip anything whose value depends on people updating it manually.
🔍 Click to zoom - the invoice is the small number, and the decay test settles most decisions
LiveThe adoption bill for each of the four layers4 min

Ask for these to be written down and owned before you approve anything. They are not risks. They are the actual scope of work, and the licence is a rounding error against them.

  • Layer 1, ERD tooling. Adoption cost is a regeneration habit. Somebody must make the diagram an output of the database rather than a drawing, and design reviews must start from the regenerated version. If your candidate cannot regenerate, the adoption cost is a permanent manual chore, which is another way of saying the artifact will be false by the next quarter.
  • Layer 2, transformation and testing. The highest adoption cost of the four, and the one most worth paying. Everyone who edits transformation logic has to move into version control, accept a review step, agree on the staging and intermediate and marts convention, and write tests for models they already trusted. Weeks of friction, and after it a broken change fails in the build instead of in a stakeholder meeting.
  • Layer 3, catalog. The bill is the backfill, and it is always underestimated because the harvestable parts arrive instantly and look like progress. Owner and grain and business meaning for every table that already exists is human work, and it must be scoped as a named piece of work for a defined slice, not as a hope.
  • Layer 4, semantic layer. The bill is a series of arguments, held once and in public. Every contested metric has to be settled before it can be encoded, and a few of those settlements will disappoint someone senior. Bazaar's 13 definitions look tidy on the page; the work in them is not the syntax, it is deciding that revenue means one thing.
Real world

The catalog that taught a team to ignore catalogs. A data function bought a catalog to solve "nobody knows who owns anything", switched on automatic harvesting, and had every table listed within a fortnight. Ownership and grain were left for teams to fill in as they went. A quarter later the tool held several hundred tables with descriptions on a small fraction of them, and analysts had learned that searching it returned a name and nothing useful. The licence was not the loss. The loss was that the second attempt, eighteen months later with a proper backfill, had to overcome a whole team's belief that catalogs do not work. Buying the layer before you fund the behaviour does not delay the benefit. It puts a cost in front of it.

Self-studyWhy "we will keep it updated" is not a plan2 min read

Any artifact that requires a human to remember something in order to stay true will stop being true, and the timescale is a quarter rather than a year. This is not a comment on anyone's diligence. It is arithmetic: updating is unrewarded, invisible when done and invisible when skipped, and it competes with work that has a deadline.

So when a proposal contains the phrase "and the team will keep it up to date", treat it as a defect in the proposal rather than a commitment. There are only three acceptable answers. The artifact is generated automatically, so staleness is impossible. Or a specific person owns it as a named responsibility with a review cadence you can point at. Or you accept that it will be stale and stop calling it a source of truth. All three are legitimate. The fourth option, which is hoping, is the one that has already failed in your organisation at least once.

Part 3 · how to decide

Standardise, buy, or skip 6 min live

Three rules, applied in order. They will resolve most tooling requests without needing a comparison matrix, and they have the useful property of being defensible out loud to the person whose request you just declined.

Run every request through these three, in order Gate 1 · Is there a convention we have not agreed yet? Naming, grain sentences, layering, who may change a table Standardise first A tool cannot hold an agreement Gate 2 · Does it enforce something humans keep forgetting? Not "helps us remember". Makes the wrong thing fail. Buy it This is the only reason to buy Gate 3 · Does its value depend on manual updating? Diagrams, glossaries, ownership fields, descriptions Skip it Or fund the updating as real work Gate 1 is the one that saves the most money, and it is the one leaders skip. Conventions are free, they survive every migration, and a tool bought before them encodes whatever confusion you had. Gate 3 is the one that saves the most credibility: it is not a rule against documentation, it is a rule against calling an unmaintained artifact a source of truth. Decide which of the three verdicts you are giving, and say which gate produced it.
🔍 Click to zoom - three gates, in order, and the verdict each one produces
LiveThe three rules, and how to say them out loud4 min
  • Standardise conventions before buying tools. Naming, grain sentences, the staging and intermediate and marts layering, who may change a table: all free, all portable, all survive every migration you will ever do. A tool bought before the convention exists gets used four different ways by four different people, which is exactly the situation you were trying to fix, now with an invoice. Say it as: "what would we standardise on if we had no budget at all? Let us do that first, and then see what is left."
  • Buy where the tool enforces something a human keeps forgetting. This is the whole positive case. Tests and contracts enforce that a promise is kept. A semantic layer enforces that one word means one thing. Regenerated diagrams enforce that the picture matches the database. A tool that only makes good behaviour possible is competing with a busy quarter, and the busy quarter wins. Say it as: "what does this make impossible that is currently merely discouraged?"
  • Skip anything whose value depends on people updating it manually. Not because documentation is bad, but because an unmaintained artifact presented as authoritative is worse than an absence. Either the update is automatic, or it is a named person's job with a cadence, or you stop calling it a source of truth. Say it as: "who fills this in, in which week, and what happens if they do not?"

Notice that all three rules are questions rather than positions. That is deliberate: they let you decline a request without contradicting the person's technical judgement, which is usually correct about the tool and usually wrong about the sequence.

LiveThe build-versus-buy question worth asking per layer3 min

Building your own is a real option in two of the four layers and a bad idea in the other two. One question per layer settles it:

  • Layer 1, ERD. "Can we generate this from the database we already have, and is that good enough for a design review?" Very often yes, using nothing but a script and an existing diagram format. Genuinely build, and expect it to cost a couple of days.
  • Layer 2, transformation and testing. "Are we prepared to maintain a dependency graph, a test runner and a contract checker as internal products, forever?" Almost always no. This category is mature and the conventions are industry-standard. Adopt, do not build. Every homegrown version of this becomes one person's unmaintained framework.
  • Layer 3, catalog. "Do we need search across many teams, or do we need one honest table of owners and grains?" If the honest answer is the second, a governed table plus a scheduled harvest of schemas and freshness gets you most of the value at close to zero licence. Buy when the number of teams, not the number of tables, is the problem.
  • Layer 4, semantic layer. "Do our consumers read definitions from one place, or does each tool hold its own?" You can absolutely start by building: a governed table of definitions in the warehouse, with expression, grain, owner and caveat. That is exactly what this course ships as 13 definitions, and it was enough to take an AI analyst from 0 of 20 to 20 of 20. Buy when you need enforcement at query time rather than agreement at design time.

The pattern across all four: build where the artifact is small and the value is agreement, buy where the value is enforcement at runtime and the maintenance never ends.

Self-studyYou do not need this yet if...2 min read

Hold this list up in a budget review. Every line is a legitimate reason to defer, and deferring is not the same as neglecting.

  • ERD tooling - if one person can draw the whole model on a whiteboard from memory and two others would agree with it. Buy nothing; take a photo and put it in the repository.
  • Transformation and testing - if exactly one person writes all the transformation logic and there are no downstream consumers outside their team. This is the shortest deferral on the list, because it expires the moment a second person joins.
  • Catalog - if a single spreadsheet of tables, owners and grain sentences would fit on one screen and stay current. Write that spreadsheet. It is the same value at zero cost, and it also tells you when you have outgrown it.
  • Semantic layer - if you have fewer than roughly a dozen metrics that matter and nobody is currently disagreeing about any of them. Write the definitions as a governed table first. If they hold for two quarters, you have your answer about whether you needed a product.
  • Any of the four - if the grain and caveat workshop from session a3 scored badly. That score is a diagnosis of missing agreement, and no product in this market sells agreement.
Discussion exercise 1 of 2

The four-layer audit ★ 8 min · run this in your next team meeting

Twenty minutes, a whiteboard, no vendors present. The output is a picture of which layers you actually have, which you have paid for but not adopted, and which single layer is worth the next quarter's attention. Run it before any tooling conversation rather than during one.

Draw the four layers on the board. Draw and version, transform and test, catalog, semantic. Nothing else on the board yet, and no product names.

Write what you own in each layer, and what it enforces. Two columns. A layer where you can name a tool but cannot name what it makes impossible goes in a third column marked "paid for, not adopted", and that column is usually the most interesting thing in the room.

For each empty layer, state the signal. Not the benefit. The observable event that says you need it now: two engineers describing the same relationship differently, the weekly "who owns this" question, two dashboards disagreeing on one word. No signal means no purchase this quarter.

Pick exactly one layer for the next quarter and name its adoption cost. One. Write the behaviour change and the person who owns it beside the layer. If nobody will accept the behaviour change, you have learned that this was never a tooling problem.

LiveThe prompt, a good answer, and the failure mode to listen for5 min

The prompt, read aloud: "Four layers on the board. For each one, tell me what we own, and tell me what it makes impossible. Not what it helps with. What it makes impossible. Then for every empty layer, tell me the thing we have actually observed that says we need it."

What a good answer sounds like: "Layer 2 we own: transformation logic is in version control with tests, and a change that breaks a declared column fails the build, so that is genuine enforcement. Layer 1 we have diagrams, but they are drawn by hand and last updated in February, so I would put that in the paid-for-not-adopted column. Layer 3 is empty, and the signal is real: the same three people get asked who owns a table roughly weekly. Layer 4 is empty and I do not think we have the signal yet, because nothing is currently disagreeing."

The failure modes to listen for:

  • Product names instead of enforcement. "We have the enterprise catalog." That answers a procurement question, not this one. Ask again: what does it make impossible? Silence there is the finding.
  • A benefit standing in for a signal. "It would give us better visibility." A benefit is what a vendor says. A signal is something that has already happened, that you can date. Keep asking until you get an event.
  • Wanting layer 4 first. Extremely common, because it is the layer with the best demo and the clearest link to AI ambitions. The gentle version of the pushback: "if we encoded our metric definitions tomorrow, would the room agree with them?" If not, you are about to make a disagreement official.
  • Picking three layers for one quarter. Each has a behavioural adoption cost, and three simultaneous behaviour changes is three abandoned initiatives. Insist on one, and name the person.
  • "We have all four already." Then the honest follow-up is why the last metric argument happened, and which layer failed to prevent it. There is always a recent one.
Discussion exercise 2 of 2

Map the pitch onto the frame ★ 5 min · the script

Use this the next time someone brings you a tooling request, whether it comes from your own team or from a vendor who found your calendar. It takes about five minutes and it moves the conversation from features to sequence, which is where the actual decision lives.

Ask which of the four categories it is. A good answer names one. An answer that names three means the product spans layers, which is fine but means you are being asked to approve three adoption programmes at once, and you should price it that way.

Ask what it makes impossible. Then wait. The gap between "it enables" and "it prevents" is the entire difference between a tool that survives a busy quarter and one that does not.

Ask which convention it assumes we have already agreed. Every tool in every layer assumes something: a layering convention, a naming standard, an ownership model. Name it, then check whether you actually have it. Most declined requests die honestly right here.

Ask who fills in the manual fields, and in which week. A name and a week, or the fields stay blank and the artifact becomes decorative. Then give a verdict and say which gate produced it, so the next request arrives already framed.

LiveThe prompt, a good answer, and the failure mode to listen for4 min

The prompt: "Four questions before we talk about the product. Which of the four layers is this? What does it make impossible? Which convention does it assume we have already agreed? And who fills in the manual fields, in which week?"

What a good answer sounds like: "It is layer 2. It makes it impossible to ship a change that drops a column another team has declared a dependency on, because the build fails. It assumes we have agreed a layering convention, which we have not, so I would want two weeks on that first. There are no manual fields; the contracts are declared alongside the code that people already have to touch." That is a strong answer, and note that it includes a delay the requester volunteered.

The failure modes to listen for:

  • An answer about the roadmap. "The next release will add contracts." You are being asked to buy an intention. Decide on what exists today.
  • A demo answer. "Let me show you." The demo will be good; that is its purpose. It will not answer question three, which is the one that decides.
  • No manual fields claimed at all. Nearly always untrue in layers 3 and 4. Ownership, grain sentences and caveats cannot be harvested from anything. If the answer is "it is all automatic", the person has not used it with real data yet.
  • Urgency attached to an AI initiative. "We need this before we can launch the AI analyst." Sometimes true and worth acting on, and session a6 is where that case gets made properly. But the accuracy came from 13 definitions with grain and caveat, not from a purchase order, and it is worth knowing which one you are being sold.
Take this to your own team

Seven questions to ask your data team 4 min live

Short, neutral, and hard to answer with a product name. As in a3, the value is less in the answer being right than in how quickly it arrives and whether it cites something you could go and look at.

Ask thisWhy it works
"Which of our four layers does this request buy us, and what does it make impossible?" Converts a product pitch into a category decision in one sentence. The second half is the real test: enabling good behaviour loses to a busy quarter, preventing bad behaviour does not.
"When was our model diagram last regenerated, and was it regenerated or redrawn?" Dates the artifact and reveals whether it is an output or a document. A redrawn diagram older than a quarter is not a diagram, it is a historical record that people are still trusting.
"If someone renames a column a report depends on, what happens?" The single sharpest question about layer 2. "The report breaks and someone tells us" means you have a folder structure. "The build fails" means you have contracts. Nothing else you ask about this layer matters as much.
"What share of tables in our catalog have a named owner and a grain sentence?" Asks for a proportion, which cannot be answered with an anecdote. A low number is not a failure of the catalog, it is an unfunded backfill, and that is a scoping decision rather than a tooling one.
"Do BI and any AI analyst read the same metric definitions from the same place?" Tests for layer 4 without asking whether you own a semantic layer. If each consumer holds its own definitions, they disagree by construction, and no amount of review cadence fixes that.
"Which convention would we standardise on if we had no budget at all this year?" Surfaces gate 1 in a form nobody can argue with. The answer is almost always naming, grain or layering, all free, and it usually turns out to be the actual blocker behind the tooling request.
"Which tool do we pay for and not really use, and what stopped us?" Every organisation has one, and the reason is nearly always an unfunded behaviour change rather than a bad product. It is the cheapest available lesson about your own adoption capacity, and it should shape the size of the next commitment.
Self-studyHow to decline a good request well2 min read

Most tooling requests you decline will be technically correct. The person is right that the tool solves a real problem; they are wrong about the sequence, and telling them they are wrong about the tool will cost you the next honest recommendation they might have made.

So decline on the gate, not on the merit. "This is a good fit for layer 4 and I want it. Gate 1 says we have not agreed what revenue means, so a semantic layer would encode the argument rather than settle it. Settle the metric definitions this quarter and bring the same request back with them attached, and I will approve it." That is a yes with a sequence, it names what has to be true, and it is a genuinely stronger position than either approving or refusing.

It also has a side effect worth having: the next request arrives already mapped onto the four layers, with the convention question answered. Once that happens, this session has done its job and you can stop running the script.

Homework

Try it yourself - this week ◐ 30-40 min total

Source material

Sources covered

This page teaches conventions and categories rather than products, because the conventions are the part that will still be true when the logos have changed. The full source map, including what is deliberately out of scope, is in materials/official-course-map.md. This page covers:

dbt layering conventions (staging / intermediate / marts) and model contractsPart 1 · layer 2, and the difference between enabling and enforcing; built for real in builder sessions b8 and b9
Dehghani, Data Mesh - data as a product, the contract as the interfaceParts 1 and 3 · why a contract beats documentation; the contract document itself is session a5
Kimball & Ross, The Data Warehouse Toolkit - grain and conformed dimensionsPart 1 · the marts convention assumes a declared grain; grain is session a3, the design work is b5-b7
Inmon, Building the Data Warehouse - who owns changePart 2 · adoption cost is really a question about who absorbs change; ownership is session a5
Semantic layers and metric definitions as machine-readable artifactsPart 1 · layer 4, and the 0 of 20 to 20 of 20 result; what to fund for agents is a6, the build is b9
Check yourself

Three questions before you go 🎯 ◐ 90 seconds

1 · Your team has no agreed naming standard and no agreed layering convention. A semantic layer demo was genuinely impressive and the business case cites AI ambitions. What is the right call?

Gate 1 before gate 2. A semantic layer is a place to put agreements, so buying one before the agreements exist centralises the confusion and makes it look canonical. The evidence that the layer pays is strong - 13 definitions with grain and caveat took an AI analyst from 0 of 20 to 20 of 20 on this course's data - but the value was in the definitions, and those can be written this quarter with no licence at all.

2 · Which of these is the strongest signal that you now need a catalog?

A signal is an observable event you can date, not a benefit or a threshold. Table count says nothing about whether anyone is struggling to find things, and a lineage demo is a capability rather than a need. The weekly routing question plus a real incident is exactly the shape of "ownership is tribal knowledge", which is the problem this layer enforces against.

3 · A proposal you like ends with "and the team will keep the descriptions up to date". How should you treat that sentence?

Updating is unrewarded, invisible whether done or skipped, and competes with work that has a deadline, so it stops happening within about a quarter. That is arithmetic rather than a comment on diligence. Three answers are acceptable - automatic, or a named owner with a cadence, or an honest downgrade from "source of truth" - and hoping is not one of them. This is gate 3, and it is the rule that protects your credibility rather than your budget.

Leader session 4 cheat sheet · pin this

Four categories, not four logosDraw and version · transform and test · catalog · semantic layer. Map any vendor onto one of them before discussing features.
Layer 1 · the honest observationA diagram nobody regenerates is a lie within a quarter, and a dangerous one because it still looks finished.
Layer 2 · the sharpest question"If someone renames a column a report depends on, what happens?" Build fails = enforcement. Report breaks = a folder structure.
Layer 3 · the bill is the backfillSchemas and freshness harvest themselves. Owner, grain and meaning never do. An empty catalog teaches the team to ignore catalogs.
Layer 4 · the measured case13 definitions with expression, grain and caveat took an AI analyst from 0 of 20 to 20 of 20 on unchanged data.
Gate 1 · standardise firstNaming, grain sentences, layering: free, portable, survive every migration. A tool bought before them encodes the confusion.
Gate 2 · buy enforcementNot "helps us remember". Makes the wrong thing fail. Anything that merely enables good behaviour loses to a busy quarter.
Gate 3 · skip manual upkeepAutomatic, or a named owner with a cadence, or not a source of truth. Next: a5, the conventions gate 1 keeps demanding.