DuckDB 1.5.2 – SQL database that runs on laptop, server, in the browser
janandonly
151 points
49 comments
April 22, 2026
Related Discussions
Found 5 related stories in 69.5ms across 5,335 title embeddings via pgvector HNSW
- DuckDB 1.5.0 erikcw · 15 pts · March 10, 2026 · 85% similar
- Announcing DuckDB 1.5.0 bluehat974 · 13 pts · March 09, 2026 · 80% similar
- Distributed DuckDB Instance citguru · 169 pts · April 14, 2026 · 66% similar
- DuckLake v1.0 henrikhorluck · 18 pts · April 13, 2026 · 61% similar
- Show HN: DuckDB community extension for prefiltered HNSW using ACORN-1 cigrainger · 26 pts · March 25, 2026 · 52% similar
Discussion Highlights (11 comments)
whalesalad
duckdb is a generational technology innovation. insanely good ergonomics, great performance, it's awesome.
esafak
Any opinions on DuckLake?
uwemaurer
I benchmarked DuckDB 1.5.2 with the latest Java JDBC driver which now supports user defined functions. This allows very fast modifications https://sqg.dev/blog/java-duckdb-benchmark/
fzumstein
DuckDB also runs in Excel, by the way, via the free xlwings Lite add-in that you can install from the add-in store. It’s using the Python package and allows to write scripts, custom functions, as well as use a Jupyter-like notebook workflow.
ramraj07
Did they finally enable full SIMD or keep insisting its okay not to have it?
gigatexal
Data engineer here: I use this all the time. It's amazing. For most of the data the sizes we often deal with it's perfect.
andrewstuart
I found it unusable due to out of memory errors with a billion row 8 column dataset. It needs manual tuning to avoid those errors and I couldn’t find the right incantation, nor should I need to - memory management is the job of the db, not me. Far too flakey for any production usage.
mmarian
It's been a lifesaver for some analysis I had to do on 70GB of Cloudflare logs.
porridgeraisin
I use duckdb often too, but the way it is being hyped in these comments makes me feel like I'm missing out on some insane usecase. I basically use it to load csv, jsonl, parquet etc etc formats and do arbitrary transformations. Are people doing something else with it?
yolo3000
So is DuckDb a database or a cli tool to query all sorts of file format using SQL statements? I've used it as a CLI tool, somehow don't understand the comparison to a database, which stores your data reliably, besides responding to your SQL queries.
NorthSouthNorth
I had a project a year ago that worked with lots and lots of csv files and it was just such a lifesaver. Doing a JOIN and WHERE on two (massive) csv files and getting instant results felt like magic. Saved me a lot of time on ad hoc queries. Also Claude being good with the tool is a bonus too. Easily my favourite piece of software recently.