1. New JSON files land continuously in a cloud storage location and must be ingested incrementally with automatic detection of new files and schema evolution. Which Databricks feature is designed for this?
- A. Auto Loader (cloudFiles)✓ Correct
- B. COPY INTO run once manually
- C. A static batch read of the whole directory each hour
- D. Delta Sharing
Explanation
Auto Loader (cloudFiles) incrementally and efficiently detects and ingests new files as they arrive, with schema inference/evolution and scalable file discovery. A one-time COPY INTO (B) isn't continuous, a full directory batch read (C) reprocesses everything, and Delta Sharing (D) shares data across orgs.