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")
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")
.option(\ignoreDeletes\, \true\)option(\readChangeFeed\, \true\).option(\skipChangeCommits\, \true\).option(\startingVersion\, \latest\)More Monitoring and Alerting Questions
20 questions
Full Databricks Certified Data Engineer Professional Practice Test
All topics covered
All Databricks Certified Data Engineer Professional Questions
Browse by topic
Related Questions
What is the minimum prerequisite for a Databricks workspace to access system tables?...
A FinOps team wants to build a dashboard showing daily Databricks compute spend broken down by works...
A data engineer wants to identify all SQL queries that ran on a specific SQL warehouse in the past 7...
A data engineer wants to monitor the number of records dropped by a `@dp.expect_or_drop` expectation...
Which system table records a history of all changes made to a Unity Catalog object's permissions (gr...
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
Sign in to join the discussion