READ ONLY
Storage
$25/TB/Month Per Client
Compute
$5 Per TB Scanned
Network
Negligible
SELECT origin, count(*) AS total_departures
FROM flights_avro_example
WHERE year >= '2000'
GROUP BY origin
ORDER BY total_departures DESC
LIMIT 10;
Query | Costs | Speed | Amount Scanned |
---|---|---|---|
SELECT cab_type, count(*) FROM trips_parquet GROUP BY cab_type; | $.005 | 6 Seconds | 600MB |
Query | Costs | Speed | Amount Scanned |
---|---|---|---|
SELECT passenger_count, avg(total_amount) FROM trips_parquet GROUP BY passenger_count; | $.50 | 6 Seconds | 102GB |
Query | Costs | Speed | Amount Scanned |
---|---|---|---|
SELECT passenger_count, year(pickup_datetime), count(*) FROM trips_parquet GROUP BY passenger_count, year(pickup_datetime); | $.50 | 6 Seconds | 101GB |