Fast drilldown dashboards from a single Parquet file
v3gas
157 points
18 comments
August 24, 2026
Related Discussions
Found 5 related stories in 51.8ms across 4,281 title embeddings via pgvector HNSW
- Show HN: ParqDB – Vector search in the browser from Parquet over HTTP" petrizhang · 11 pts · August 21, 2026 · 55% similar
- Paging Through a Parquet File in DuckDB: File_row_number or Offset? rustyconover · 38 pts · July 30, 2026 · 44% similar
- Datasette-plot – Datasette Plugin for building data visualizations ankitg12 · 12 pts · July 20, 2026 · 43% similar
- Show HN: WaveHouse – Supabase for ClickHouse ericandr · 15 pts · August 20, 2026 · 43% similar
- Show HN: Dreeve, a self-hosted dashboard for your sports and fitness data frogfuhrer · 12 pts · July 29, 2026 · 42% similar
Discussion Highlights (6 comments)
mrbluecoat
A clever repurposing of technologies but realistically only worthwhile for static datasets with range payloads small enough to fit into a web response. > your pipeline has to rebuild each customer’s file fast enough to meet the update cadence. ... data that updates on a coarse schedule rather than in realtime
deanebarker
Interesting how noise complaints dwarf any other type of complaint in NYC.
simonw
> The bytes pass through a small Cloudflare Worker on the way, because the free r2.dev URL is rate-limited. For a 40MB file I suggest hosting it directly on GitHub Pages - that's effectively a free CORS-enabled CDN and supports HTTP range requests, so you should be able to get that demo working without needing to involve Cloudflare Workers at all.
cosmojg
> A dashboard like this one is designed to answer a bounded set of analytical questions ~ requests per day, requests per day for one agency, all-time totals by borough. Each question can be answered by GROUP BY queries, so we can precompute them all ahead of time and save each result as its own small table, called a grouping set. Stack all of the grouping sets in one Parquet file, one section per set, and you have a data cube. A grouping set is only useful if it either enables a question to be answered, or reduces the latency of pulling the data. What's the benefit of "data cubes" over caching?
youngtaff
I’d loved to have seen more detail on how the Parquet file was actually built — are there any good resources that cover this?
wlessard_ca
How is this any different from the old OLAP cubes like IRL / Express? The cube is basically an array in memory and super fast, the dashboards based on Group By as well. I was an Express consultant at Oracle, great to see old concepts come back to life if it’s what I think it is.