Exam Certified Data Engineer Associate All QuestionsBrowse all questions from this exam
Question 51

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 of the following keywords can be used to compact the small files?

    Correct Answer: B

    The correct keyword to compact small files in a Delta table is OPTIMIZE. By using the OPTIMIZE command, you can combine smaller data files into larger ones, which improves query performance and efficiency in accessing the Delta table.

Discussion
kishanuOption: B

OPTIMIZE can be used to club small files into 1 and improve performance.

meow_akkOption: B

Ans B : optimize is used to compact small files which in turn improves perf

UGOTCOOKIESOption: B

OPTIMIZE is the correct answer. Compacting small files using the OPTIMIZE command improves table performance such as by combining multiple small files into larger ones.

azure_bimonsterOption: B

OPTIMIZE would help in this scenario

nedloOption: B

Its B https://docs.databricks.com/en/delta/optimize.html

benni_aleOption: B

B is correct