QuestionQ46
Managing DataA data analyst configured a Delta table using the default retention settings. The analyst runs VACUUM operations weekly to control storage costs. A business user requests access to data from 10 days earlier for a compliance audit.
What happens to a time-travel query in this scenario?
- A The time travel query will succeed because Delta Lake automatically backs up data for compliance purposes, regardless of VACUUM operations.
- B The time travel query will succeed because the default log retention period is 30 days, which is sufficient to access 10-day-old data.
- C The time travel query will fail because the default maximum table version is 7 and numbering resets after each VACUUM operation, making historical versions inaccessible.
- D The time travel query will fail because the default data file retention period is 7 days, and VACUUM operations have likely removed the required data files.
Community Discussion