Which statement describes the default execution mode for Databricks Auto Loader?
- ACloud vendor-specific queue storage and notification services are configured to track newly arriving files; new files are incrementally and idempotently loaded into the target Delta Lake table.
- BNew files are identified by listing the input directory; the target table is materialized by directly querying all valid files in the source directory.
- CWebhooks trigger a Databricks job to run anytime new data arrives in a source directory; new data are automatically merged into target tables using rules inferred from the data.
- DNew files are identified by listing the input directory; new files are incrementally and idempotently loaded into the target Delta Lake table. (correct answer)
Reveal answer & explanationHide answer
The correct answer is D. Option D: New files are identified by listing the input directory; new files are incrementally and idempotently loaded into the target Delta Lake table.
Explanation
Delta Lake adds ACID transactions, schema enforcement, time travel, and reliable batch and streaming operations to a data lake.


