I tried it against a large-ish (hundreds of mb) log file and the query was simple to write while spitting out the result .. very quick.
Impressed!
61–70 of 81 posts
I tried it against a large-ish (hundreds of mb) log file and the query was simple to write while spitting out the result .. very quick.
Impressed!
edit: Looks like DuckDB lets you use SQL-style queries
If you ever need to join two large dataframes, but are OOMing on the join, write them to disk as parquet files then use DuckDB to do the join. It's amazing what you can do on one machine thanks to DuckDB.
Very nice! Does anyone know if we can query duckdb with a pandas dialect?
* duckdb example: https://siuba.org/guide/workflows-backends.html#duckdb
* supported methods: https://siuba.org/guide/ops-support-table.html
Earlier quoted context omitted.
Tried to open DuckDB file with one table with 890K rows and about 30 columns. Process stalled, had to kill it (MacOS). DuckDB cli opens it in a snap.
:( Thanks for trying. The only thing I can think is perhaps a version conflict (requires 0.70) but I would have expected it to say, rather than freeze. I will try to recreate the problem. Thanks.
Ah I was looking for exactly this the other day. I'm try to build a git based interface to our BI tool so that we can get config for our reports in source control instead of configuration in a db. Was looking for something to read json files which will house the config via SQL, i.e. a human readable db as an alternative to what the BI tool is using for it's config persistence. Will give DuckDB a go, thanks for postin…