mrkeyoor.com_
Tue 01 Sept 17:45 UTC
Open Source6 min read

AWS Is Buying DuckLabs While DuckDB Stays Independent

AWS is acquiring DuckLabs and its core database team. DuckDB's code and intellectual property will remain with its nonprofit foundation.

A six-word headline, "AWS Acquires DuckDB," collected 637 Hacker News points roughly half an hour after submission. It is also materially imprecise. AWS is acquiring DuckLabs, the Amsterdam company that employs DuckDB's core contributors. The open-source database itself, including its intellectual property, MIT license and trademarks, remains under the independent DuckDB Foundation. For developers, that split matters more than the logo on the buyer's press release.

The transaction is expected to take effect in early September, according to the announcement from DuckLabs. Its team of more than 30 people will stay together in Amsterdam, and co-creators Hannes Mühleisen and Mark Raasveldt will continue to lead both the team and the project's technical direction. Neither side disclosed a price. Amazon says the agreement is subject to customary closing conditions.

AWS gets the people, the foundation keeps the project

DuckDB's unusual organizational structure explains what Amazon can and cannot buy here. DuckDB is the in-process analytical database. DuckLabs is the bootstrapped commercial company founded a little over five years ago to employ its main developers and sell technical support. The DuckDB Foundation's FAQ says the Dutch nonprofit holds most of the project's intellectual property, while DuckLabs provides support services and employs the core contributors.

That arrangement was designed before this sale. The foundation says its statutes require DuckDB to remain open source under the MIT license in perpetuity. The current repository license names Stichting DuckDB Foundation as the copyright holder. The foundation also owns the DuckDB trademarks, and its guidelines bar any cloud provider or vendor from presenting itself as the official or exclusive DuckDB platform. Those protections constrain an acquirer in ways that a promise in a press statement cannot.

AWS confirms the boundary in unusually direct language: it says it is not acquiring the DuckDB open-source project. DuckDB, DuckLake, Quack and the project's extensions will remain MIT licensed, while the nonprofit foundation continues as steward. Existing users do not need to change packages, licenses or deployment plans because of the transaction, based on what both parties have announced.

There is still a practical concentration of influence. The foundation may own the code and marks, yet Amazon will employ the group that has done much of the daily engineering. Mühleisen and Raasveldt say the team will keep contributing at a high pace. Governance documents can protect the right to fork and the license of existing work; they do not manufacture maintainer time. Contributors should therefore watch who reviews patches, who sets release priorities and whether work useful outside AWS receives the same attention.

DuckDB was already deep inside the AWS data stack

The deal follows product work rather than a cold approach. AWS and DuckLabs have collaborated since 2024. In March 2025, DuckDB previewed support for Iceberg REST catalogs, allowing users to connect DuckDB to Amazon S3 Tables and SageMaker Lakehouse. The DuckDB engineering post explicitly credited that support to collaboration between AWS and DuckLabs.

That pairing makes technical sense. DuckDB runs inside an application or notebook and can query files such as Parquet directly, including data in object storage. AWS owns the object store that anchors a large share of cloud analytics. Amazon's announcement says it wants the combined team to make AWS analytics faster, simpler and less expensive, but names no service, launch date or integration plan. DuckLabs says the parties plan to use DuckDB, DuckLake and Quack in a new generation of data services. The wording leaves open whether those services will be managed products, components inside existing AWS offerings or both.

DuckLabs also brings a project with reach beyond Amazon's customer base. The company says DuckDB now records more than one million downloads per day. Its founders describe the existing support model as a looming bottleneck: serving more users would have required a much larger sales, operations and infrastructure organization, pulling attention away from database engineering. Joining AWS gives the team those functions without building them from scratch. It also makes one cloud vendor the employer of the core group behind a database used across competing clouds and local systems.

The next governance change was announced before the sale

Nine days before the acquisition news, the DuckDB team previewed a stakeholder advisory board for the foundation. The DuckDB 2.0 preview says the board will begin this fall and provide input on the roadmaps for DuckDB, DuckLake and Quack. The acquisition announcement repeats that plan and says leading community members will be able to contribute their views. Membership, voting power and any conflict rules have yet to be published in the cited announcements.

Those details will determine how much the board changes the balance of influence. An advisory body can broaden the information reaching maintainers without having authority over a roadmap. The foundation already has a board seat for CWI, the Dutch research institute where DuckDB began. Naming representatives from users, independent contributors and companies that compete with AWS would offer clearer evidence of vendor-neutral governance than the board's existence alone.

The foundation structure also separates DuckDB from MotherDuck, a venture-backed company that sells a cloud data platform built around the database. The official FAQ says MotherDuck contracts with DuckLabs for development services and that DuckLabs owns a portion of MotherDuck. The sale announcement does not explain what happens to those contracts or that ownership interest. That omission is relevant because AWS will soon employ the engineering company on which another commercial DuckDB vendor has relied.

Extensions are where the promises meet executable code

DuckDB's extension system deserves close attention because extensions execute with the privileges of the parent process. Current documentation divides them into core-signed, community-signed and unsigned categories. DuckDB recommends disabling community extensions in services that execute untrusted SQL and warns that allowing unsigned extensions can load malicious code. Its security guide also documents switches that disable automatic installation and loading.

DuckDB 2.0 is due to change distribution. The preview describes a stable C API and user-defined extension repositories with pinned RSA public keys. An organization would be able to host and sign its own binaries, then register the repository in DuckDB without depending on the project's built-in extension servers. DuckLabs says it plans to open the extension stack so binaries signed by other developers and organizations can run in DuckDB. That would reduce one source of maintainer control if the shipped design matches the preview.

For companies embedding DuckDB, the useful checks are concrete. The repository should remain owned by the foundation, releases should continue under MIT, and third-party extension signing should arrive with the documented verification controls. Teams with strict supply-chain rules should keep pinning versions and restricting extension repositories regardless of who employs the maintainers. The acquisition does not change the fact that an extension is native code inside the host process.

What the announcement does not settle

Open licensing prevents AWS from withdrawing the existing code, and foundation ownership blocks a straightforward proprietary relicensing of the official project. Neither protection guarantees equal engineering investment across platforms. AWS could concentrate new integration work on S3, SageMaker or its own managed services while the portable core remains open. No announced term forbids that outcome, and neither company has provided a post-acquisition roadmap detailed enough to assess it.

The first evidence will arrive soon. Watch the transaction's expected early-September close, the membership and remit of the foundation's advisory board, and the DuckDB 2.0 implementation of independent signed extension repositories. Release notes and pull-request activity will show whether support for non-AWS storage and cloud systems keeps pace. Until those facts appear, the accurate description is narrower than the viral headline: Amazon is buying DuckLabs and hiring DuckDB's core team, while the foundation retains the project developers can still use, inspect and fork.

We reviewed this

  1. servers — our honest review
  2. duckdb — our honest review
  3. query — our honest review

Sources

  1. DuckLabs to Join AWS, Projects to Remain Open Source
  2. AWS to acquire DuckLabs, the company behind DuckDB
  3. Frequently Asked Questions - DuckDB
  4. DuckDB license
  5. Preview: Amazon S3 Tables in DuckDB
  6. A Preview of DuckDB v2.0
  7. Securing Extensions - DuckDB