logoalt Hacker News

Fast drilldown dashboards from a single Parquet file

123 pointsby v3gastoday at 8:13 AM9 commentsview on HN

Comments

simonwtoday at 2:51 PM

> 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.

show 1 reply
mrbluecoattoday at 2:38 PM

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

show 2 replies
cosmojgtoday at 2:54 PM

> 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?

show 1 reply
deanebarkertoday at 2:39 PM

Interesting how noise complaints dwarf any other type of complaint in NYC.

yahiamosttoday at 12:59 PM

Great read!