
Databricks Certified Data Engineer - Associate
Get started today
Ultimate access to all questions.
Which Auto Loader structured streaming command correctly transfers data from the landing area to the Bronze layer in Databricks?
Which Auto Loader structured streaming command correctly transfers data from the landing area to the Bronze layer in Databricks?
Real Exam
Explanation:
The correct command uses readStream
with format("cloudFiles")
to leverage Auto Loader for streaming data from the landing area, specifies the CSV format, and includes the schema location and checkpoint directory for metadata and progress tracking. This ensures the data is correctly streamed into the Bronze layer. Incorrect options either miss readStream
or use incorrect formats or methods, which are crucial for the Auto Loader's operation and the medallion architecture's requirements.