Databricks-Certified-Data-Engineer-Professional Exam Question 81

A data engineer is working in an interactive notebook with many transformations before outputting the result from display(df.collect() ). The notebook includes wide transformations and a cross join.
The data engineer is getting the following error: "The spark driver has stopped unexpectedly and is restarting. Your notebook will be automatically reattached." Which action should the data engineer take?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 82

    A data engineer is tasked with ensuring that a Delta table in Databricks continuously retains deleted files for 15 days (instead of the default 7 days), in order to permanently comply with the organization's data retention policy. Which code snippet correctly sets this retention period for deleted files?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 83

    Assuming that the Databricks CLI has been installed and configured correctly, which Databricks CLI command can be used to upload a custom Python Wheel to object storage mounted with the DBFS for use with a production job?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 84

    An upstream source writes Parquet data as hourly batches to directories named with the current date. A nightly batch job runs the following code to ingest all data from the previous day as indicated by the date variable:

    Assume that the fields customer_id and order_id serve as a composite key to uniquely identify each order.
    If the upstream system is known to occasionally produce duplicate entries for a single order hours apart, which statement is correct?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 85

    A streaming video analytics team ingests billions of events daily into a Unity Catalog-managed Delta table video_events. Analysts run ad-hoc point-lookup queries on columns like user_id, campaign_id, and region. The team manually runs OPTIMIZE video_events ZORDER BY (user_id, campaign_id, region), but still sees poor performance on recent data and dislikes the operational overhead. The team wants a hands-off way to keep hot columns co-located as query patterns evolve. Which Delta capability should the team leverage on video_events?