
Answer-first summary for fast verification
Answer: _delta_log
Every Delta table is associated with a specific directory named '_delta_log' that houses the transaction log for the table. Whenever records are added, updated, or deleted from the table, a new JSON file is created within the '_delta_log' directory. This mechanism ensures data integrity and supports time travel features.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
A data engineer is attempting to access the transaction log for the 'ratings' table, which records weekly TV show ratings nationwide. Which folder contains the transaction logs for this table?
A
_ratings_log
B
_log_ratings
C
_delta_log
D
_transaction_log
E
_log
No comments yet.