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

A user new to Databricks is trying to troubleshoot long execution times for some pipeline logic they are working on. Presently, the user is executing code cell-by-cell, using display() calls to confirm code is producing the logically correct results as new transformations are added to an operation. To get a measure of average time to execute, the user is running each cell multiple times interactively.
Which of the following adjustments will get a more accurate measure of how code is likely to perform in production?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 67

    The business reporting team requires that data for their dashboards be updated every hour. The total processing time for the pipeline that extracts, transforms, and loads the data for their pipeline runs in 10 minutes. Assuming normal operating conditions, which configuration will meet their service-level agreement requirements with the lowest cost?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 68

    A Delta Lake table representing metadata about content from user has the following schema:
    user_id LONG, post_text STRING, post_id STRING, longitude FLOAT, latitude FLOAT, post_time TIMESTAMP, date DATE Based on the above schema, which column is a good candidate for partitioning the Delta Table?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 69

    A data engineer is configuring a Databricks Asset Bundle to deploy a job with granular permissions. The requirements are:
    * Grant the data-engineers group CAN_MANAGE access to the job.
    * Ensure the auditors' group can view the job but not modify/run it.
    * Avoid granting unintended permissions to other users/groups.
    How should the data engineer deploy the job while meeting the requirements?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 70

    A junior data engineer on your team has implemented the following code block.

    The view new_events contains a batch of records with the same schema as the events Delta table. The event_id field serves as a unique key for this table.
    When this query is executed, what will happen with new records that have the same event_id as an existing record?