A data engineer has realized that the data files associated with a Delta table are incredibly small. They want to compact the small files to form larger files to improve performance. Which keyword can be used to compact the small files?
- AOPTIMIZE (correct answer)
- BVACUUM
- CCOMPACTION
- DREPARTITION
Reveal answer & explanationHide answer
The correct answer is A. Option A: OPTIMIZE
Explanation
OPTIMIZE compacts small Delta files to improve data-skipping and query performance.




