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

You noticed that a team member started using an all-purpose cluster to develop a notebook and used the same all-purpose cluster to set up a job that can run every 30 mins so they can update un-derlying tables which are used in a dashboard. What would you recommend for reducing the overall cost of this approach?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 22

    Create a sales database using the DBFS location 'dbfs:/mnt/delta/databases/sales.db/'
  • Databricks-Certified-Professional-Data-Engineer Exam Question 23

    At the end of the inventory process a file gets uploaded to the cloud object storage, you are asked to build a process to ingest data which of the following method can be used to ingest the data incrementally, the schema of the file is expected to change overtime ingestion process should be able to handle these changes automatically. Below is the auto loader command to load the data, fill in the blanks for successful execution of the below code.
    1.spark.readStream
    2..format("cloudfiles")
    3..option("cloudfiles.format","csv)
    4..option("_______", 'dbfs:/location/checkpoint/')
    5..load(data_source)
    6..writeStream
    7..option("_______",' dbfs:/location/checkpoint/')
    8..option("mergeSchema", "true")
    9..table(table_name))
  • Databricks-Certified-Professional-Data-Engineer Exam Question 24

    Which of the below SQL commands create a Global temporary view?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 25

    You are asked to setup an AUTO LOADER to process the incoming data, this data arrives in JSON format and get dropped into cloud object storage and you are required to process the data as soon as it arrives in cloud storage, which of the following statements is correct