COF-C02 · Question #433
The effects of query pruning can be observed by evaluating which statistics? (Select TWO).
The correct answer is A. Partitions scanned C. Bytes scanned. Query pruning (micro-partition pruning) allows Snowflake to skip partitions that cannot contain relevant data based on filter predicates. Its effectiveness is measured by: Partitions scanned (A) - the number of micro-partitions actually read versus the total available, and…
Question
The effects of query pruning can be observed by evaluating which statistics? (Select TWO).
Options
- APartitions scanned
- BPartitions total
- CBytes scanned
- DBytes read from result
- EBytes written
How the community answered
(28 responses)- A93% (26)
- B4% (1)
- D4% (1)
Explanation
Query pruning (micro-partition pruning) allows Snowflake to skip partitions that cannot contain relevant data based on filter predicates. Its effectiveness is measured by: Partitions scanned (A) - the number of micro-partitions actually read versus the total available, and Bytes scanned (C) - the total data volume read after pruning. A large gap between total partitions and partitions scanned confirms effective pruning. 'Bytes read from result' refers to cached result reuse, not pruning.
Topics
Community Discussion
No community discussion yet for this question.