COF-C02 · Question #315
What metadata does Snowflake store for rows in micro-partitions? (Select TWO).
The correct answer is A. Range of values B. Distinct values. Snowflake automatically collects and stores metadata for each micro-partition (compressed columnar storage units of 50–500 MB of uncompressed data). The metadata stored per column per micro-partition includes: (A) the range of values - the minimum and maximum values in that…
Question
What metadata does Snowflake store for rows in micro-partitions? (Select TWO).
Options
- ARange of values
- BDistinct values
- CIndex values
- DSorted values
- ENull values
How the community answered
(43 responses)- A95% (41)
- C2% (1)
- D2% (1)
Explanation
Snowflake automatically collects and stores metadata for each micro-partition (compressed columnar storage units of 50–500 MB of uncompressed data). The metadata stored per column per micro-partition includes: (A) the range of values - the minimum and maximum values in that column - which enables partition pruning during query execution, and (B) the number of distinct values, used by the query optimizer for cardinality estimation. This metadata allows Snowflake to skip entire micro-partitions that cannot possibly satisfy a query's filter predicates, drastically reducing I/O without requiring user-defined indexes.
Topics
Community Discussion
No community discussion yet for this question.