
Databricks Certified Data Engineer - Professional
Get started today
Ultimate access to all questions.
Consider the following Structured Streaming query in Databricks:
spark.readStream
.table("orders")
.writeStream
.option("checkpointLocation", checkpointPath)
.table("Output_Table")
What is the trigger interval for this query?
Consider the following Structured Streaming query in Databricks:
spark.readStream
.table("orders")
.writeStream
.option("checkpointLocation", checkpointPath)
.table("Output_Table")
What is the trigger interval for this query?
Real Exam
Explanation:
By default, if no trigger interval is specified, the data will be processed every half second. This is equivalent to setting trigger(processingTime='500ms')
. For more details, refer to the Databricks documentation on triggers.