
Ultimate access to all questions.
Given the following Structured Streaming query:
spark.readStream
.table("orders")
.writeStream
.option("checkpointLocation", checkpointPath)
.table("Output_Table")
spark.readStream
.table("orders")
.writeStream
.option("checkpointLocation", checkpointPath)
.table("Output_Table")
Which of the following describes the trigger interval for this query?_
A
Every half second
B
Every half hour
C
The query will run in batch mode to process all available data at once, then the trigger stops.
D
More information is needed to determine the correct response.
E
Every half min