Skip to content
DEP
Monitoring and Alerting
hard
Question 2 of 20

A data engineer streams incremental data from system.billing.usage into a Delta table for near-real-time cost monitoring. The streaming job intermittently fails with an error about unsupported source table changes. Which option should be added to the streaming read to prevent this failure?

spark.readStream
    .table("system.billing.usage")
    .writeStream
    .format("delta")
    .option("checkpointLocation", "/chk/billing")
    .start("/delta/billing_monitor")

A.option(\ignoreDeletes\, \true\)
Boption(\readChangeFeed\, \true\)
C.option(\skipChangeCommits\, \true\)
D.option(\startingVersion\, \latest\)

Educational Content — CertQnA practice questions are written against official exam objectives, covering the same domains tested on the real exam. All content is original and independent — not actual exam questions, not affiliated with any certification vendor. Learn more about our content policy

Discussion

Be the first to share your understanding of this concept

⚠️ Discussion is for concept clarification only. Do not share or request actual exam questions or answers.

Sign in to join the discussion