
Explanation:
The question asks which Auto Loader schema evolution mode keeps the stream running while ignoring new columns.
Correct Answer: D — none
Why none is correct:
none mode, Auto Loader does not evolve the schema.Why the other options are wrong:
Critical thinking tip:
If uninterrupted streaming is your priority and new fields are irrelevant to downstream consumers, none is the safest choice.
Ultimate access to all questions.
A data engineer is exploring schema evolution modes in Databricks Auto Loader. Which mode should they choose to ensure the stream continues without failing, while also ignoring any new columns that may appear?
A
dropNewColumns
B
addNewColumns
C
ignoreNewColumns
D
none
E
failOnNewColumns