FEFreeExamDumps.in

Implementing Data Engineering Solutions Using Azure Databricks

95 / 95← PrevNext →
Topic 1

Question 95

DP-750 voucher + Udemy course (lifetime access) = ₹3,500 for Indian ID card holders.

Details →

A team wants to aggressively reclaim storage on a busy production Delta table that has long-running jobs writing to it throughout the day. An engineer proposes the following maintenance step, to be run during business hours: ```sql -- Disable the safety check, then vacuum with zero retention SET spark.databricks.delta.retentionDurationCheck.enabled = false; VACUUM prod.fact_transactions RETAIN 0 HOURS; ``` **Proposed solution:** Running `VACUUM` with a 0-hour retention on this table risks breaking time travel and can corrupt results for concurrent readers and in-flight writers, so it should not be run this way on a busy production table. Does this solution meet the goal?

  • AYes
  • BNo