Query petabytes of data in R2 Data Catalog directly — no infrastructure to manage, no clusters to provision.
Queries run across Cloudflare's global network
Uses Iceberg metadata to skip irrelevant data files
Process data where it lives, not in centralized clusters
Only pay for the data you actually scan
1SELECT2 event_type,3 COUNT(*),4 AVG(duration_ms)5FROM default.user_events6WHERE event_time >= '2025-01-01'7 AND user_id IS NOT NULL8GROUP BY event_type9ORDER BY COUNT(*) DESC10LIMIT 10;
| event_type | COUNT(*) | AVG(duration_ms) |
|---|---|---|
| page_view | 1,245,832 | 42.3 |
| click | 892,451 | 18.7 |
| purchase | 156,234 | 234.1 |