The Pipeline You Don’t Have to Build

There is a peculiar habit in data engineering: we measure sophistication by the machinery we build. A source drops CSV files into storage, so we create a pipeline. The pipeline needs a schedule, parameters, schema handling, retries, logging, alerts, deployment rules, credentials, and somebody willing to answer for it at 2:00 a.m. None of that is especially difficult. That is precisely the problem. Enterprises spend an astonishing amount of engineering time repeatedly solving work that is too ordinary to deserve bespoke engineering.

Microsoft Fabric Shortcut Transformations attack that problem at the right level. They convert supported files referenced through a OneLake shortcut into a managed Delta table, keep the table synchronized with the source, and expose the result to SQL, Spark, Power BI, and other Fabric consumers. CSV, Parquet, and JSON transformations are generally available. Excel support is in preview. A separate public-preview capability applies built-in language processing to text files for summarization, translation, sentiment analysis, personally identifiable information detection, and named-entity recognition.

That feature list is useful. The architectural consequence is more important.

Shortcut Transformations move routine ingestion from something every project must build into something the platform simply does.

That is the difference between accelerating a pipeline and deleting the need for one.

Continue reading “The Pipeline You Don’t Have to Build”

Fabric Runtime 2.0 Changes the Fabric Engineering Baseline

A Fabric notebook can contain six lines of PySpark and still depend on an enormous amount of technology that is not visible in those six lines. The result depends on the version of Spark that planned the work, the Python or Scala runtime that interpreted the code, the Delta implementation that read and wrote the tables, the Java virtual machine underneath Spark, the operating system beneath that, and the Fabric services that connected the workload to OneLake and compute.

That hidden stack is easy to ignore while it remains stable. Fabric Runtime 2.0 is the moment when ignoring it becomes dangerous.

Runtime 2.0 is now the latest generally available Fabric Spark runtime. It moves the platform to Apache Spark 4.1, Delta Lake 4.2, Python 3.13, Java 21, Scala 2.13, R 4.5.2, and Azure Linux 3.0. Microsoft currently requires customers to opt into it, but plans to make it the default selection for new workspaces and Environment items in late September 2026.

Those facts make Runtime 2.0 sound like a substantial but conventional platform upgrade. It is more important than that. Runtime 2.0 brings together a new Spark generation, a newer Delta protocol, native execution, lower-latency streaming, modern language runtimes, stronger environment management, and a clearer lifecycle for Fabric applications.

The significance is not that every Fabric workload suddenly needs the newest feature. The significance is that the runtime has become part of the application’s architecture, operating model, performance model, and deployment contract.

Continue reading “Fabric Runtime 2.0 Changes the Fabric Engineering Baseline”

OneLake Transformations Are GA—and That Makes Zero‑Unmanaged‑Copy Much More Practical

If you were already bullish on OneLake transformations in preview, the structured-file general availability milestone is easy to treat as a nice product update: useful, welcome, and mostly about convenience. I think that undersells it. What Microsoft officially calls shortcut transformations for structured files is now generally available, and the docs position it very plainly: take CSV, Parquet, or JSON files referenced through a OneLake shortcut, convert them into queryable Delta tables, keep them synchronized, and do it without hand-built ETL pipelines. That is not just easier ingestion. It is a stronger architectural bridge between raw file-based inputs and governed analytical assets inside OneLake.

What I want to do in this post is straightforward. First, I want to explain why this GA moment matters to the zero‑unmanaged‑copy model, not just to file onboarding. Second, I want to connect it to the ingest‑transform‑surface framing we have been using here. Third, I want to argue that shortcut transformations are another example—alongside Materialized Lake Views—of how multistep transform pipelines smooth the path between layers and produce something cleaner than a rigid, box-drawing version of bronze‑silver‑gold. Fabric still clearly supports medallion as a first-class pattern, but that does not mean your internal architecture has to stop at three oversized steps.

GA matters because ingest just got more product-shaped

The most important thing about shortcut transformations going GA is that ingestion becomes more like a platform primitive and less like a custom engineering tax. Microsoft’s documentation now describes shortcut transformations as managed conversion from shortcut-backed files into Delta tables with automatic schema handling, deep flattening, recursive folder discovery, frequent synchronization, and inherited governance including OneLake lineage, permissions, and Purview policies. Microsoft’s “What’s New” log also calls out the feature as generally available in April 2026. In other words, the platform now has a stable, service-managed answer for a very common problem: “I have structured files over there; I want governed Delta tables over here; and I do not want to build and babysit another pile of pipelines to make that happen.”

That is a bigger deal in financial services than it might sound at first. Wealth management teams still receive custodian position files. Lending teams still deal with servicer extracts and partner feeds. Reinsurers still work with bordereaux. Property and casualty organizations still inherit operational file drops from claims, finance, and third-party data providers. Credit card processing estates are full of settlement files, exception files, dispute files, and fee reports. Those are not edge cases. They are the day-to-day reality of how important data actually arrives. Historically, that reality has led to a familiar pattern: copy the files into a landing zone, copy them again into a parsed zone, run a notebook to shape them, land them again into a managed table, and only then begin the “real” transformation work. Shortcut transformations do not eliminate every later materialization, but they collapse a large chunk of that low-value plumbing into a governed ingest step that the platform now owns.

And notice how this changes the conversation with delivery teams. The question becomes less “what custom ingest framework are we going to build for this source?” and more “what is the cleanest input boundary we want to declare?” That is a healthier architectural question. It pushes teams to think intentionally about what they are consuming, where the source of authority lives, and what should be represented as managed Delta inside OneLake. That is already a more product-shaped starting point than “let’s dump it somewhere and figure it out later.”

Zero‑unmanaged‑copy gets stronger, not weaker

This is exactly why the feature strengthens the zero‑unmanaged‑copy model rather than contradicting it. OneLake is explicitly described by Microsoft as a single, unified logical lake with one copy of data for use with multiple analytical engines, and shortcuts are explicitly designed to eliminate edge copies and the latency introduced by staging. In your own framing, the important idea has never been “never materialize anything.” It has been “don’t proliferate unmanaged copies that escape governance, clarity, and intent.” When you do materialize, do it in a place and format the platform can govern. Shortcut transformations fit that definition almost perfectly: the upstream files remain where they are, referenced through the shortcut, while Fabric produces a managed Delta table inside the OneLake estate.

That may sound like a subtle distinction, but operationally it is not subtle at all. Consider a lender receiving monthly or daily boarding files from an external servicer. The old pattern tends to produce “temporary” copies in multiple storage locations, each with its own lifecycle, permissions, and chances to drift from the intended source. Or consider a card-processing analytics team pulling settlement and chargeback files from an external store. The common workaround is a ladder of copies and partial transforms, often implemented in a way that nobody wants to fully document because the whole thing is “just staging.” Shortcut transformations move that copy into the open. The resulting Delta table is not an accidental byproduct of bespoke ETL. It is a declared, synchronized, monitored platform asset. That is a much better expression of zero‑unmanaged‑copy than a philosophy that refuses any materialization and then quietly tolerates three layers of shadow duplication anyway.

There is also a governance payoff here that matters in regulated industries. Microsoft’s documentation explicitly notes that the transformed shortcut flow carries inherited governance signals, including lineage, permissions, and Purview policies. That is precisely what you want when the data is headed into lending risk analytics, advisor reporting, reserving support, or operational reconciliation. The copy that exists is not just “inside the platform.” It is inside the platform’s governance envelope. That is what makes it managed.

The ingest‑transform‑surface model just got sharper

This is where the ingest‑transform‑surface framing becomes especially useful. On edudatasci.net, the advanced lakehouse pattern was framed as explicit inputs through shortcuts or schema shortcuts, a small-step transformation layer implemented as a DAG, and a versioned schema-based surface exposed as the product contract. Shortcut transformations make the ingest part of that model stronger because they give file-based sources a cleaner first-class boundary. Before, the model was already strong when the input was Delta-native, mirrored, or otherwise easy to consume. Now the file-heavy edge of the estate gets a much more elegant path into the same pattern. The ingest boundary stops being “a folder our notebook happens to read” and becomes “a managed Delta representation of the files we intentionally consume.”

The supporting mechanics line up nicely too. Microsoft documents lakehouse schemas as named collections of tables, supports schema shortcuts that map external Delta folders or other lakehouse schemas into your local lakehouse, and supports four-part cross-workspace Spark SQL names. That matters because it lets you keep both the input layer and the product surface explicit. Inputs can be isolated into a clearly named schema. Outputs can be versioned into clearly named product schemas. And the path between the two can remain a deliberate internal implementation rather than an accidental tangle of notebooks and one-off scripts.

The surface side of the model is just as important. Microsoft’s Fabric lifecycle docs say that once data is in OneLake, you can transform it within Fabric without moving it between engines. From there, you can expose it through schemas, through the automatically provisioned SQL analytics endpoint, or through Direct Lake semantic models over Delta tables in OneLake. The SQL analytics endpoint gives you a read-only T-SQL surface over lakehouse Delta tables. Direct Lake is explicitly described as ideal for the gold analytics layer because it reads OneLake Delta tables directly and refreshes by copying metadata rather than replicating the full dataset. That is exactly what a surface should be: a published interface over governed assets, not yet another extraction exercise.

Think about a wealth management product for reconciled holdings and exposures. The ingest boundary might be multiple shortcut transformations over custodian and reference-data files. The transform layer might canonicalize security identifiers, standardize portfolio keys, and compute look-through exposures. The surface might be a versioned schema consumed by quants through SQL and by executives through a Direct Lake semantic model. Same OneLake foundation, explicit boundaries, and far fewer excuses to create side copies “just for reporting.” The model becomes cleaner because each step knows what it is for.

This is another multistep transform pipeline story

The real architectural lesson, though, is not just about ingest. It is about small-step composition. Microsoft’s medallion guidance now explicitly says Materialized Lake Views can be used to implement medallion architecture without building complex pipelines between bronze, silver, and gold. The MLV docs describe declarative transformations, automatic dependency management, built-in data quality rules, optimal refresh, and monitoring. They also note that an MLV can be defined from a table or from another MLV, and that lineage is processed in dependency order. That is exactly what a multistep transform pipeline is supposed to look like: not one giant transformation job, but a graph of smaller, observable steps the platform can understand and operate.

Now read that next to the shortcut transformation documentation and the pattern becomes even more explicit. The shortcut transformations doc not only describes the managed file-to-Delta ingest step; it also says, in plain language, that for further transformations—especially where you need more shaping—you should use Materialized Lake Views for the silver layer. That is a remarkably direct articulation of the chained pattern: start with shortcut transformations to get from file-shaped raw data to governed Delta, then continue with MLVs for the internal transformation graph. Sources stay explicit. Steps stay small. Lineage stays visible. Outputs become cleaner.

This is why I keep coming back to the distinction between medallion as vocabulary and medallion as rigid execution template. Bronze, silver, and gold are useful labels. They are useful teaching tools. They are often a sensible way to describe maturity and intent. But when teams turn those labels into three huge engineering buckets, they often hide too much complexity inside each one. Type normalization, deduplication, survivorship, conformance, rule application, exception handling, and regulatory quality checks get shoved into a few oversized jobs, and then everyone pretends the architecture is clean because the folders are named nicely. The actual engineering is still messy. Multistep transform pipelines smooth out the terrain between those layers by making the in-between work first-class and observable. That is the cleaner option.

Shortcut transformations are now part of that same pattern. They are not merely “how files become bronze.” They are a small transformation step at the ingest edge. MLVs are then small steps in the internal transform graph. Schemas, SQL endpoints, and Direct Lake models become the product surface. Once you see the architecture that way, the old bronze‑silver‑gold staircase starts to look less like a design and more like a loose shorthand for where things broadly sit. The real architecture is the chain of explicit steps between ingest and surface.

That matters a lot in financial services because the hardest work is often not the initial landing and not the final dashboard. It is the middle. In lending, the middle is where delinquency logic, payment reversals, and exposure calculations get reconciled. In property and casualty insurance, it is where claim events are ordered, reserves are interpreted, and policy context is attached. In reinsurance, it is where bordereaux are standardized, treaty mappings are applied, and quality exceptions are isolated. In wealth management, it is where multiple custodians’ versions of the same reality are made coherent enough to publish. Those are exactly the places where smaller, composable transform steps beat giant middle layers every time.

Why financial services teams should care now

Financial services teams should care about this GA moment because so much of the estate is still file-shaped at the edges. Not everything arrives as CDC. Not everything is mirrored. Not everything is already Delta. A large amount of economically important data still shows up as structured files in cloud storage, partner locations, or other OneLake-connected sources. Shortcut transformations being generally available means that edge is now less custom, less brittle, and more governable. The platform can take more responsibility for the boring but essential work of turning structured files into governed Delta tables that stay synchronized.

And that changes where your engineering attention can go. Instead of spending cycles on repetitive file-to-table plumbing, teams can concentrate on the parts of the pipeline that actually differentiate the data product: the business rules, the conformance logic, the quality controls, the contract design, and the surface that consumers trust. That is a much healthier allocation of effort. Your best engineers should be spending more time on exposure logic, reserve interpretation, advisor segmentation, fraud features, or liquidity reporting—not on rebuilding another ingestion ladder for CSV files.

So yes, the obvious story is that OneLake transformations are GA. But the more important story is architectural. The feature makes zero‑unmanaged‑copy more practical because it gives file-heavy estates a managed bridge into Delta. It makes ingest‑transform‑surface more complete because the ingest boundary gets sharper. And it reinforces the same lesson Materialized Lake Views have been teaching: the cleanest modern Fabric pipelines are multistep, explicit, and contract-oriented. Bronze‑silver‑gold still has value. It just works better when it describes the landscape rather than dictating three oversized jumps across it.

Closing thoughts

If you have a backlog full of nightly file copy jobs, fragile parsing notebooks, and “temporary” landing zones that somehow became permanent, this is a good moment to redraw the picture. Start with the input boundary. Let OneLake own more of the copy and synchronization work. Use small-step transformations where the business logic actually lives. And treat the surface as the product contract your consumers are meant to rely on. That is a cleaner architecture than a rigid bronze‑silver‑gold staircase—and now that structured shortcut transformations are GA, it is a much more practical one too.

Beyond the Medallion: Building Fabric Data Products with Schemas, Materialized Lake Views, and a “Surface Area” Contract

If you’ve been around modern analytics platforms for more than five minutes, you’ve probably built (or inherited) a medallion architecture: bronze → silver → gold. It’s familiar, it’s easy to draw on a whiteboard, and it’s often the first stable pattern teams reach for.

But there’s a quiet problem hiding in that simplicity: the number of sublayers tends to grow, and the complexity of each layer tends to balloon. Before long, you’re not designing a data product—you’re running an assembly line of multi-step transforms, hand-managed orchestration, and fragile dependencies.

Microsoft Fabric is starting to give us a different move: instead of treating transformation as a few “big” layers, you can treat it as a series of small, composable steps—and let the platform manage the dependency graph.

In this article, I’m going to connect three ideas:

  • Lakehouse schemas as your unit of organization (and the boundary between “internal plumbing” and “published contract”)
  • Materialized Lake Views as the declarative engine that builds (and refreshes) a dependency graph for you
  • surface area schema designed to be shortcutted into other workspaces—so each workspace becomes an “analytical microservice” with its own interface, security boundary, and versioning story

Along the way, we’ll introduce a pragmatic versioning approach: create a new schema for major versions so breaking changes get semantic versioning “for free.”

Continue reading “Beyond the Medallion: Building Fabric Data Products with Schemas, Materialized Lake Views, and a “Surface Area” Contract”

The Ideal Microsoft Fabric CI/CD Approach: Git for Change, Deployment Pipelines for Promotion, and a Code-First Escape Hatch

Microsoft Fabric CI/CD has a reputation for being confusing—usually because people look at Git integration and Deployment Pipelines as competing ideas rather than two halves of a single delivery story.

The good news is that the “ideal” approach is not exotic. It’s a handoff:

  • Use Git integration to support real developer workflows (including branching that maps cleanly to isolated workspaces).
  • Use Deployment Pipelines to promote approved changes across environments.
  • When you need richer approvals, tests, and release controls, let traditional tooling—especially GitHub Actions or Azure DevOps Pipeline—orchestrate promotions via Fabric APIs.

In this post, I’ll lay out that end-to-end pattern step-by-step, show where the seams belong, and call out the cost you can’t ignore: workspace sprawl—and the operational discipline required to manage aged workspaces intentionally.

Continue reading “The Ideal Microsoft Fabric CI/CD Approach: Git for Change, Deployment Pipelines for Promotion, and a Code-First Escape Hatch”

Stop Paying Hot-Tier Prices for Cold Data: Using ADLS Gen2 to Tame Fabric Ingestion Storage Costs

If you’ve been living in Microsoft Fabric for a few months, you’ve probably felt it: the platform makes it incredibly easy to ingest data… and surprisingly easy to rack up storage spend while you’re doing it (especially considering how much storage is included).

The pattern is common. A team starts with a Lakehouse, adds Pipelines or Dataflows Gen2 for ingestion, follows a sensible medallion approach, and before long they’re keeping “just in case” raw files, repeated snapshots, and long-running history inside OneLake—often at the same performance tier as yesterday’s data. The storage bill grows quietly. Capacity pressure shows up in places you didn’t expect. And suddenly “simple ingestion” is a FinOps conversation.

Here’s the good news: you don’t have to choose between Fabric and sensible archival strategy. Azure Data Lake Storage Gen2 (ADLS Gen2) can be your pressure relief valve—your durable landing zone and archive—while Fabric stays the place you compute, curate, model, and serve.

What follows is a deep dive into how to use ADLS Gen2 accounts to solve the archival and storage-cost traps that show up during Fabric ingestion: where the costs come from, what architectural patterns work well, and the practical implementation details (shortcuts, security, and billing mechanics) that make it real for Microsoft Fabric teams.

Continue reading “Stop Paying Hot-Tier Prices for Cold Data: Using ADLS Gen2 to Tame Fabric Ingestion Storage Costs”

Data Quality as Code in Fabric: Declarative Checks on Materialized Lake Views

If you’ve ever shipped a “clean” silver or gold table only to discover (later) that it quietly included null keys, impossible dates, or negative quantities… you already know the real pain of data quality.

The frustration isn’t that bad data exists. The frustration is that quality rules often live somewhere else: in a notebook cell, in a pipeline activity, in a dashboard someone checks (sometimes), or in tribal knowledge that never quite becomes a contract.

Microsoft Fabric’s Materialized Lake Views (MLVs) give you a more disciplined option: you can define declarative data quality checks inside the MLV definition using constraints, and then use Fabric’s built-in monitoring, lineage, and embedded Power BI Data Quality reports to understand how quality is trending across your lakehouse and your data products.

In this post, I’ll cover what these checks look like, how to add them, and—most importantly—how to turn them into quality signals you can operationalize for a Microsoft Fabric lakehouse and the Data Engineering teams who depend on it.

It’s important to note, here, that we’re looking at structural data quality here. Data Integrity – making sure that your data is following your business logic, makes sense, and isn’t drifting, is another discipline, and while these techniques can be adapted for it, there’s other ways to implement that that are more efficient.

Continue reading “Data Quality as Code in Fabric: Declarative Checks on Materialized Lake Views”

The Advanced Lakehouse Data Product: Shortcuts In, Materialized Views Through, Versioned Schemas Out

There’s a familiar tension in modern analytics: teams want data products that are easy to discover and safe to consume, but they also want to move fast—often faster than the governance model can tolerate.

In Microsoft Fabric, that tension frequently shows up as a perception of workspace sprawl. A “single product per workspace” model is clean on paper—strong boundaries, tidy ownership, straightforward promotion—but it can quickly turn into dozens (or hundreds) of workspaces to curate, secure, and operate.

This post proposes a different pattern—an advanced lakehouse approach that treats the lakehouse itself like a product factory:

  • Shortcuts or schema shortcuts become the input layer (a clean, contract-aware “ingest without copying” boundary).
  • small-step transformation layer is implemented as a multi-step DAG using Materialized Lake Views (MLVs).
  • versioned, schema-based surface area becomes the data product contract you expose to consumers.

Then we connect that to OneLake security and Fabric domains, showing how you can expose left-shifted data products (usable earlier in the lifecycle) without letting workspaces multiply endlessly.

Continue reading “The Advanced Lakehouse Data Product: Shortcuts In, Materialized Views Through, Versioned Schemas Out”

Freeze-and-Squash: Turning Snapshot Tables into a Versioned Change Feed with Fabric Materialized Lake Views

Periodic snapshots are a gift and a curse.

They’re a gift because they’re easy to land: each load is a complete “as-of” picture, and ingestion rarely needs fancy orchestration. They’re a curse because the moment you want history with meaning—a clean versioned change feed, a Type 2 dimension, a Data Vault satellite—you’re suddenly writing heavy window logic, MERGEs, and stateful pipelines that are harder to reason about than the business problem you were trying to solve.

This post describes a Fabric Materialized Lake View (MLV) pattern that “squashes” a rolling set of snapshot tables down into a bounded, versioned change feed by pairing a chain of MLVs with a periodically refreshed frozen table. We’ll walk the pattern end-to-end, call out where it shines (and where it doesn’t), and then show how the resulting change feed can be used to support both #SlowlyChangingDimensions and #DataVault processes in an MLV-forward #MicrosoftFabric lakehouse architecture.

Before we go too far: the gold standard is still getting a change feed directly from the source system (CDC logs, transactional events, source-managed “effective dating,” or an authoritative change table). When you can get that, take it. Everything else—including this pattern—is a disciplined way of making the best of snapshots.

Continue reading “Freeze-and-Squash: Turning Snapshot Tables into a Versioned Change Feed with Fabric Materialized Lake Views”

Delta First: Building Efficient Bitemporal Tables in Microsoft Fabric

In financial services, the questions that matter most are rarely answered by “the latest record.”

Regulators, auditors, model validators, and operations teams want something more specific: what was true for the business at the time, and what did we know at the time? That’s bitemporal thinking—and it’s exactly the kind of problem where Microsoft Fabric’s Lakehouse on Delta becomes more than storage. It becomes a practical design advantage.

In this post, I’m going to walk through what bitemporal tables actually require, why intervals matter (ValidFrom/ValidTo), and how to implement bitemporal efficiently in Fabric by leaning into #DeltaLake in the Lakehouse. We’ll ground it with two #FSI examples (low velocity KYC and high velocity trades/payments), and we’ll add a derived-layer option using materialized lake views to calculate closure dates. Finally, we’ll cover when Azure SQL Database (including Hyperscale) is the right operational complement to Fabric.

Continue reading “Delta First: Building Efficient Bitemporal Tables in Microsoft Fabric”