Quack w/ Hannes Mühleisen (DuckDB)
TL;DR
Quack gives DuckDB a native client-server protocol: Hannes framed it as DuckDB finally being able to talk to another DuckDB instance, whether on the same machine, across the network, or even from the browser via HTTP.
The benchmark claim is aggressive and specific: In Hannes' test on two EC2 machines in the same availability zone, Quack transferred 16 million rows in about 4 seconds, versus 22 seconds for Arrow Flight and about 3 minutes for Postgres.
Quack also surprised on transactional inserts: DuckDB was expected to shine at bulk transfer, but Hannes said Quack even outperformed Postgres on a small-transaction benchmark with eight parallel threads.
The protocol is intentionally boring in the right places: Quack runs over TCP plus HTTP, not a custom transport, so it works with browsers, proxies, firewalls, and standard ops tooling like Nginx.
Authentication and authorization are pluggable by design: Quack ships with basic token auth, but teams can override auth and query authorization with extensions, including community-built OAuth support and custom SQL functions.
The most interesting near-term use case may be DuckLake catalogs: Hannes showed DuckDB serving as a remote catalog server for DuckLake through Quack, which matters because DuckLake's inlining path for small inserts was already hitting limits with Postgres.
The Breakdown
DuckDB can now talk to other DuckDB instances over the network, and Hannes Mühleisen says the new Quack protocol moved 16 million rows in about 4 seconds versus 22 seconds for Arrow Flight and roughly 3 minutes for Postgres. The bigger surprise was small transactions: Quack even beat Postgres with eight parallel threads, then Hannes proved the setup live by spinning up a fresh EC2 box, installing DuckDB in seconds, and querying it remotely.
Was This Useful?
Share
Keep Reading
Make Alcreon Yours
Tune your feedFive quick questions, and the feed ranks what matters to you first.Or just get notified
The weekly Echo. Signal worth keeping in your inbox.
Every new piece, announced on X.
Read Next
See all
Playbook
Tasteful Skills
“Tasteful Skills” argues that the best agent skills are not documentation or best-practice lists.

Playbook
The Art of Tasteful Prompting
Learn how tasteful prompting helps you move beyond generic AI output by shaping context, style, and judgment from the start.

Playbook
The Codex /goal Playbook
OpenAI shipped /goal for the Codex CLI. It turns a prompt into a persisted, self-continuing contract.