Data & architecture

What is a data lakehouse? Architecture, benefits and use cases

For years the choice was blunt. You either bought a data warehouse that ran fast queries on tidy, structured data, or you stood up a data lake that swallowed everything and asked no questions. Each solved half the problem and made the other half worse. The lakehouse is the architecture that stopped forcing that choice, and it is now the layer a lot of AI work quietly depends on.

A data lakehouse puts the cheap, flexible storage of a lake and the query performance and governance of a warehouse into one system. Raw data, cleaned datasets and analytics workloads all sit in the same place, so you are not copying data between platforms or paying to keep two of everything in sync. We build data foundations at Shipshape Data so AI can be trusted, and the lakehouse pattern comes up constantly, because it is usually the shortest route to a single, governed data layer that a machine learning model can actually rely on.

This guide walks through what a lakehouse is, how the architecture holds together, what it genuinely gives you, and where it will bite. By the end you should be able to tell whether it fits your estate or whether you are better off leaving your current setup alone.

Why the lakehouse exists at all

Nobody set out to invent a third kind of data platform for the fun of it. The lakehouse exists because the two options on the table each had a hole in them, and most teams ended up running both to paper over the gaps. That turned out to be expensive and slow. To see why the lakehouse won mindshare, it helps to be honest about what the warehouse and the lake each got wrong.

What warehouses do well, and where they stop

Data warehouses are very good at one thing: running structured queries on clean, organised data, quickly, over and over. That is the engine behind most business intelligence, and there is nothing wrong with it. The price is that everything has to fit a schema you define up front. So before a single row lands, you have already spent effort modelling and transforming it.

That is fine for tidy tabular data. It falls apart for the majority of what a modern business actually collects: log files, sensor readings, images, audio, PDFs, customer chat transcripts, clickstreams. None of that slots neatly into columns, so the warehouse either rejects it or forces you to flatten it into something lossy. On top of that, warehouse storage and compute carry a premium, because you are paying for performance. Once your volumes climb into the petabytes, or you want to keep data around that might never earn its place in a report, the sums stop working.

What lakes promised, and how they went wrong

Data lakes were the answer to all that. Dump everything, in whatever format it arrives, onto cheap object storage. Structured tables next to JSON next to Parquet next to raw binaries, all in one bucket, ingested with almost no ceremony. The storage was cheap and the flexibility was total.

The reality was messier. Strip out the schema enforcement and query optimisation a warehouse gives you, and a lake gets slow to query, hard to trust and close to impossible to govern. Teams lose track of what is even in there. Quality rots quietly because nothing validates anything on the way in. This is the "data swamp" everyone warns about, and it is real. We have walked into more than one estate where the lake had become a place data went to be forgotten, and the analysts had quietly given up and gone back to spreadsheets.

A lake gives you every kind of storage flexibility and takes away the performance and governance that production analytics actually need.

The two-system tax

So most organisations did the pragmatic thing and ran both. Raw data lands in the lake, gets transformed by ETL pipelines, and the cleaned output gets loaded into the warehouse for the analysts. It works. It also means you pay for storage twice, maintain a fleet of pipelines whose only job is to shuffle data sideways, and live with the lag between when data arrives and when it becomes queryable. Every one of those pipelines is a thing that can break at 2am.

That is the specific pain the lakehouse was built to remove. Rather than keeping two platforms in step, it folds the strengths of both into one system that handles messy, varied data while still giving you warehouse-grade queries and governance on top.

How a data lakehouse works

The trick is deceptively simple. A lakehouse takes ordinary object storage and lays a metadata layer over the top of it. That metadata layer is what turns a pile of files into something that behaves like a database. You keep all your data once, in open file formats like Parquet, Delta Lake or Apache Iceberg, and the metadata layer handles schemas, versioning and the bookkeeping that makes fast, safe queries possible. Because there is only one copy, the same dataset can serve a SQL dashboard, a machine learning training run and a streaming job without anyone cloning it three times.

Storage and metadata, kept separate on purpose

The bottom of the stack is object storage: Amazon S3, Azure Data Lake Storage, Google Cloud Storage, whichever you already run. Everything lives there in open formats, which keeps costs down and, just as importantly, keeps you out of a proprietary trap. Standard formats mean your data is readable by more than one engine, so you are not married to a single vendor's reader.

Sitting above that is the metadata layer, and it does the heavy lifting. It tracks schemas, partitions, file locations and column statistics, so when a query comes in, the engine knows exactly which files to open and how to read them. It also keeps a transaction log, a running record of every change, which is what lets you query an older version of a table, audit who changed what, and stop two writers from stepping on each other.

Transactions, the part lakes never had

Plain data lakes could not do concurrent writes or guarantee ACID transactions (atomicity, consistency, isolation and durability), which is precisely why they were never safe for production analytics. A half-finished write could leave a table in a state no query should ever see. The lakehouse fixes this by baking transaction support into the metadata layer, so many processes can read and write the same data at once without corrupting it.

The mechanism is worth understanding, because it explains a lot of the reliability. When you write or update records, a lakehouse does not edit files in place. It writes new files and updates the transaction log in one atomic step. If a job dies halfway through, it leaves orphaned files that never get referenced in the log, so queries simply never see them. Your reads always land on a consistent snapshot, even while writes are happening underneath.

The architecture layer by layer

Whichever vendor you look at, a lakehouse resolves into three layers doing three jobs. The names on the tin change, and the capabilities vary, but the shape is consistent. Knowing the layers makes it much easier to compare platforms honestly, because you can ask what each one actually delivers at each level rather than being sold a single glossy diagram. You can read a fuller breakdown in our note on data lakehouse architecture and its layers.

The storage layer

At the base, your data sits as open files on object storage. Parquet, Delta Lake or Iceberg, on S3, Azure Blob Storage or Google Cloud Storage. This layer is tuned for durability and cost, not speed. That is the point. It lets you hold petabytes cheaply, from raw ingestion straight through to polished analytical tables, without the warehouse premium on every gigabyte.

The metadata and catalogue layer

Above storage sits the layer that tracks schemas, partitions, table versions and statistics, holds the transaction log, and enforces the ACID guarantees. This is also where the catalogue lives, the thing that tells a query engine where the data it wants actually is. Get this layer right and you get time travel across historical versions, schema evolution that does not break downstream jobs, and proper versioning. Get it wrong and you are back to a swamp with extra steps. This is the layer where data architecture decisions really earn their keep.

The compute and processing layer

At the top, the engines: Apache Spark, Trino, Presto, or a vendor's own runtime, doing the query execution, the transformations and the machine learning. The useful property here is that compute scales independently of storage. You can throw a lot of horsepower at a heavy analytical job during the day and scale right down overnight, and your storage bill does not move because it is a separate concern. You pay for the work you actually do, not for capacity sitting idle in case you need it.

Benefits and trade-offs, honestly

The lakehouse is a genuinely good pattern, and it is not free. The upside is real operational simplification and lower cost; the downside is that the technology is younger than the warehouse world and asks more of your team. The right way to judge it is against your own workloads, not against the marketing. So here is the case for and the case against, without the gloss.

What you actually get

The headline win is that the dual-system tax disappears. No more parallel lake and warehouse, no more army of ETL jobs whose only purpose is keeping the two in step. That alone strips out infrastructure cost and a category of things that break. Your teams work from one copy of the truth instead of arguing about which system has the current numbers, which quietly removes a whole class of reporting errors.

You also get to hold every kind of data in one place while keeping queries close to warehouse speed. Structured tables, JSON logs, images, streaming sensor feeds, all sitting together, all queryable by SQL, by a model, or by a real-time job. Concretely, the shift buys you:

  • One governed copy of your data instead of duplicated storage across two platforms
  • Fewer pipelines to build and babysit, because you are not shuttling data between a lake and a warehouse
  • Fresher data, since analytics can read what just arrived rather than waiting for an overnight batch
  • Support for structured and unstructured data side by side, which is exactly what AI workloads need
  • Compute and storage that scale on their own terms, so cost tracks usage

In the estates we have moved onto a lakehouse, the biggest saving is rarely the storage line. It is the pipelines and the people-hours that used to go into keeping two systems honest.

Where it will bite

The technology is younger than the mature warehouse platforms, and it shows. You will find fewer off-the-shelf integrations, a smaller pool of people who have run one in anger, and thinner established practice to copy from. The skills it asks for span data engineering, cloud storage and distributed compute, which is a broader ask than the narrow database expertise a traditional warehouse needs.

Performance is the other honest caveat. A lakehouse does not automatically beat a purpose-built warehouse on complex analytical queries or very high-concurrency workloads. You will spend real time tuning file layouts, partition strategies and indexing to get there. Some teams do the work and are delighted. Others discover their particular query patterns just run better on a dedicated warehouse and decide the switch is not worth it. Both outcomes are legitimate, and knowing which one you are before you commit is worth a lot.

Best for organisations already carrying the cost of a separate lake and warehouse, teams feeding varied data into AI and analytics, and anyone who wants one governed data layer rather than two. Watch for: the newer tooling and broader skill set, and the tuning effort needed to match a dedicated warehouse on heavy or high-concurrency queries. If your workload is purely structured BI on modest volumes, a warehouse may still be the simpler answer.

Where a lakehouse actually earns its place

The pattern pays off when you need one set of data to serve several kinds of work at once. If your current setup forces teams to copy data around, wait on pipeline delays, or trade data variety against query speed, that friction is the signal. The lakehouse matters most when you are hitting concrete operational walls, not because a diagram in a vendor deck looks tidy.

Analytics and business intelligence on live data

You can run a real-time dashboard and a historical trend report against the same underlying tables, with no copying in between. A marketing team can query customer behaviour while a data science team trains a model on the exact same records, and nobody ends up arguing about whose extract is stale. BI tools connect over standard SQL, so business users get the familiar experience they had with the warehouse, just without the second system behind it.

Streaming data helps here too. Feeds from IoT sensors, application logs or transactions land in the lakehouse continuously and become queryable almost straight away, rather than sitting in a queue until the nightly batch runs. That is what makes use cases like fraud detection, supply chain monitoring and live customer experience work, because they depend on what is happening now, not on yesterday's snapshot.

Machine learning and AI

This is where we see the clearest payoff. Data science teams get direct access to both raw and processed data in whatever shape they need, structured tables for statistical work, unstructured text for language models, without a data engineer spending a fortnight staging a bespoke dataset for every experiment. Because everything is already stored in accessible, versioned formats, the same data supports exploration and production. Our AI and ML data readiness checklist goes deeper on what "accessible and versioned" needs to mean in practice.

The workflow closes the loop. Training pipelines read historical data to build a model, then production systems query the same platform for live predictions, so you get a continuous path from first experiment to deployed model without rebuilding the data layer at each stage. Cutting out that repeated data-prep step is usually what shaves weeks off an ML project, and it is the part of a data pipeline architecture that teams most often underestimate.

So, is a lakehouse right for you?

You now have the shape of it: a lakehouse combines flexible storage with warehouse-grade performance, removes the two-system tax, and serves BI and machine learning from one governed platform. That is the pattern. Whether it is right for you is a different question, and the answer depends on your data volumes, your existing infrastructure, your team's skills and the workloads you actually run.

A quick gut check. If you are running a separate lake and warehouse, duplicating data across them, or struggling to get AI work from prototype to production because the data layer keeps getting in the way, a lakehouse addresses those problems head-on. If your world is modest, purely structured, and your warehouse is doing the job, there is no prize for migrating for the sake of it.

Getting the layers, the formats and the governance right the first time is what separates a lakehouse from a swamp with better branding, and that is the part we do. We assess where your data stands today, work out whether a lakehouse genuinely earns its place for your workloads, and build the foundation that makes AI dependable rather than a demo that falls over in production. If you would like a straight read on whether this architecture fits your estate, talk to us and start with a clear picture instead of a vendor pitch.

Start at your core.

Tell us where your data is today and what you want AI to do. We will come back with a straight answer on what your foundation needs and where the quickest real win is.

Talk to us