1. Queries frequently filter a large Delta table by a high-cardinality column. Which technique co-locates related data to speed those filters?
- A. Z-ORDER (or liquid clustering) on that column✓ Correct
- B. Dropping the column
- C. Running VACUUM with a 0-hour retention
- D. Converting the table to CSV
Explanation
Z-ORDER (or liquid clustering) co-locates related values so filters skip more files (data skipping). Dropping the column (B), aggressive VACUUM (C), and CSV conversion (D) don't improve filtered reads.