You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select sum(record_count) from "clickstream_v3$files"
and
select count(*) from clickstream_v3
The first one is very fast, the second one is very slow. Why is the second one slow? It seems to not go into metadata, but literally go row by row in parquet.
The text was updated successfully, but these errors were encountered:
COUNT(*) queries on parquet are not executed row by row, it's executed by reading row counts from parquet file footers.
Additionally, #19303 improved this to read only iceberg metadata. Please try this on 430+ release.
I tried 2 queries:
select sum(record_count) from "clickstream_v3$files"
and
select count(*) from clickstream_v3
The first one is very fast, the second one is very slow. Why is the second one slow? It seems to not go into metadata, but literally go row by row in parquet.
The text was updated successfully, but these errors were encountered: