惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
小众软件
小众软件
T
Tailwind CSS Blog
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
罗磊的独立博客
有赞技术团队
有赞技术团队
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Jina AI
Jina AI
量子位
云风的 BLOG
云风的 BLOG
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
P
Proofpoint News Feed
N
Netflix TechBlog - Medium
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
美团技术团队

The Register

Grafana offers AI assistant for free, warns users not to go mad Right to repair champ Framework punts modular 13in laptop with Core Ultra Series 3 France's 'Secure' ID agency probes breach as crooks claim 19M records Scotland Yard can keep using live facial recognition on Londoners, say judges UK tribunal sends £2B claim accusing Microsoft of overcharging for licensing to trial Nation-states want to cause harm, not just steal cash - stop handing your cyber defenses to the cheapest contractor Murder, she wrote: Ex-FBI chief wants some ransomware crims charged with homicide Phone-to-satellite use goes into orbit, growing 25% in 8 months macOS ClickFix attacks deliver AppleScript stealers to snarf credentials, wallets Anthropic bakes memory fixes into Bun 1.1.13 as developers complain of leaks The spaghettified DBMS chart that shows Oracle's crown is slowly slipping Yet another ex-ransomware negotiator admits turning rogue after payoff from crimelords FAA grounds Blue Origin's New Glenn as it probes missed satellite delivery 'mishap' AMD's Ryzen 9 9950X3D2 Dual Edition tested: Gratuitous overkill with a price to match AI-assisted intruders pwned Vercel via OAuth abuse and a pilfered employee account Crook claims to leak 'video surveillance footage' of companies Met police trials snoop tech platform in push to cuff more London shoplifters England's school phone ban gets teeth, just in time to bite no one Adaptavist Group breach spawns imposter emails as ransomware crew claims mega-haul Panasonic creates device-locked QR codes to speed facial biometric capture Iran claims US used backdoors to knock out networking equipment during war NASA Inspector fears new spacesuits won’t be ready for Moon landing Vibe coding upstart Lovable denies data leak, cites 'intentional behavior,' then throws HackerOne under the bus Trump-branded datacenter project fails to make itself great, again World's blandest man steps down from CEO job to spend more time in tastefully appointed home Chase got a spiff of $77 million to create one job with New York datacenter Scot becomes second Scattered Spider-linked crook to plead guilty in US You too can build a nuclear battery from junk you have lying around the house Schmoozebots: study finds flattery will get AI everywhere One of Europe's sovereign cloud picks may not be so-sovereign after all
DuckDB uses RDBMS to tackle lakehouse 'small changes' issue
Lindsay Clark Lindsay Clark · 2026-04-17 · via The Register

Databases

DuckDB uses RDBMS to attack classic 'small changes' problem in lakehouses

Batching teensy changes in chunks creates massive performance boost, DuckDB Labs team claims

The team behind in-process OLAP database DuckDB has put forward a solution to the "small changes" problem that they say plagues lakehouse implementations of the kind based on technologies from Databricks, Snowflake, Google, and others.

The consulting and support company behind the open source RDBMS has just released the first production-ready iteration of its DuckLake lakehouse format following a manifesto launch last year. The May 2025 DuckLake manifesto promised to re-engineer the concept of combining data warehouses and data lakes on a single system.

Essentially, it proposed using an RDBMS to manage the metadata in lakehouse implementations based on the common open table formats Apache Iceberg and Delta Lake (introduced by Databricks, governed by the Linux Foundation), showing engineering how they could use PostgreSQL, SQLite or DuckDB as the catalog database for the task.

With its DuckLake v1.0, a production-ready lakehouse format specification launched this week, the DB gurus are showing how the database can be used to solve the so-called "small changes" problem common to lakehouse systems based on open table formats, which rely on file format Parquet.

Hannes Mühleisen, a DuckDB Labs co-founder and CEO, told The Register: "You make a small change to your table, adding a single row, and it affects data lake performance because, due to the way they work, a new file has to be written that ... contains one row, and then a bunch of metadata has to be written ... and then the catalog has to make an update. This is very inefficient, because formats like Parquet really don't want to store a single row, they want to store a million rows, and retrieving all these tiny files from object stores is extremely inefficient because you do all these transfers."

The DuckLake approach uses the metadata RDBMS to batch up those small changes and then transfers them to Parquet in relatively bigger chunks, said Mühleisen, who is also professor at Amsterdam's Centrum Wiskunde & Informatica mathematical and theoretical computing research center.

"The key design difference between other data lake formats and DuckLake is that we have a database and we're not afraid of using it. We have all this metadata about the data lake in a catalog in a DuckLake database where we know which tables exist; which files exist; how they all belong together; what changes have happened over time – all that stuff. Now, you're adding a single row and instead of writing a new file to the object store, we're going to add that to a table in the database. The key insight here is that database systems like PostgreSQL, but also DuckDB and others, are much, much better at handling small changes than object stores," he said.

The metadata database stores small changes, such as additions and deletions of rows until they are eventually "flushed" back to Parquet again as a relatively bigger file, while remaining "completely transparent to the user at the same time," he said.

In a blog post accompanying the 1.0 launch, Pedro Holanda, DuckDB Labs principal engineer, said the company's benchmark shows 926× faster queries and 105× faster ingestion when compared to Iceberg, the open table format.

"When I wrote the blog post about saying we had the 1,000x difference, I felt like, 'Oh, some people are gonna get angry,' but no one got angry. They're like, 'This is a real problem.' I even had someone say they were cheating with the architecture. That's the whole point: cheating with a better design," he told The Register.

Engineers continue to build around existing lakehouse architecture though, and are trying to solve the same problems. On the launch of DuckLake last year, Jake Ye, an AWS veteran and software engineer at AI database company LanceDB, blogged that the industry has been "increasingly consolidated around JSON-based protocols as the foundation for interoperability." At the same time, there were adoption challenges around DuckLake without good structured extensibility, versioning and transport-layer separation, he said.

Russell Spitzer, principal engineer with Snowflake, at the time told us many projects were "pretty far along the road with Iceberg, and the Iceberg community is already addressing the metadata catalog problems. DuckDB is still a fledgling database while incumbents are already well entrenched in the market. We might have to wait a while before learning whether the DuckLake concept will fly." ®