|
|
|
|
|
by anon84873628
844 days ago
|
|
It's rarely interesting logic that makes it expensive. Because the per-query charge is not based on compute cycles but the amount of data scanned. This is sufficient: `SELECT * FROM super_wide_table_with_lots_of_text
WHERE NOT filter_on_partitions_or_clusters` Select * is dangerous because it's a column store. You really need to look at the schema and select only the things you want. And when exploring the data it's important to use sane limits and pull from a single partition. |
|