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

In order to facilitate near real-time workloads, a data engineer is creating a helper function to leverage the schema detection and evolution functionality of Databricks Auto Loader. The desired function will automatically detect the schema of the source directly, incrementally process JSON files as they arrive in a source directory, and automatically evolve the schema of the table when new fields are detected.
The function is displayed below with a blank:

Which response correctly fills in the blank to meet the specified requirements?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 27

    A Structured Streaming job deployed to production has been experiencing delays during peak hours of the day. At present, during normal execution, each microbatch of data is processed in less than 3 seconds. During peak hours of the day, execution time for each microbatch becomes very inconsistent, sometimes exceeding 30 seconds. The streaming write is currently configured with a trigger interval of 10 seconds.
    Holding all other variables constant and assuming records need to be processed in less than 10 seconds, which adjustment will meet the requirement?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 28

    A Data Engineer is building a fraud detection pipeline that calls out to Open AI, via a Python library, and needs to include an access token when using the API. Which Databricks CLI command should the Data Engineer use to create the secret?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 29

    A table in the Lakehouse named customer_churn_params is used in churn prediction by the machine learning team. The table contains information about customers derived from a number of upstream sources. Currently, the data engineering team populates this table nightly by overwriting the table with the current valid values derived from upstream data sources.
    The churn prediction model used by the ML team is fairly stable in production. The team is only interested in making predictions on records that have changed in the past 24 hours.
    Which approach would simplify the identification of these changed records?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 30

    A data engineer wants to refactor the following DLT code, which includes multiple table definitions with very similar code.

    In an attempt to programmatically create these tables using a parameterized table definition, the data engineer writes the following code.

    The pipeline runs an update with this refactored code, but generates a different DAG showing incorrect configuration values for these tables.
    How can the data engineer fix this?