logoalt Hacker News

yolo3000today at 7:15 PM2 repliesview on HN

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.


Replies

mmariantoday at 7:26 PM

My personal use case is a replacement for pandas for ad hoc analysis in Jupyter notebooks, which I have to do very often these days. If I had to store the data I'd pick S3+Glue+Athena.

simonwtoday at 8:00 PM

It can act as an in-process database, like SQLite. You can import the library directly into your code.