5 ms·
See the example at https://huggingface.co/spaces/observablehq/fpdn https://huggingface.co/spaces/observablehq/fpdn where DuckDB is used both as a data loader (t
by recifs 3y ago
See the example at https://huggingface.co/spaces/observablehq/fpdn https://huggingface.co/spaces/observablehq/fpdn where DuckDB is used both as a data loader (to download and digest 200GB worth of source data into a small 8MB parquet file) and on the client-side to allow the user to do live search queries on the minimized data. Server-side, we're using duckdb-the-binary, and client-side we're using duckdb-wasm.
- kuatroka 3y agoSo the 200Gb loading and digesting part is totally separate from the Observable Framework, right? You just do it with a standard ( non wasm duckdb as part of ETL) and later you just direct Observable Framework to read and plot the 8Gb file? Thanks
- severo_bo 3y agonope, Observable Framework data loader accesses the 200GB dataset. The code is here: https://huggingface.co/spaces/observablehq/fpdn/blob/main/docs/data/presse.parquet.sh https://huggingface.co/spaces/observablehq/fpdn/blob/main/do...