
Ultimate access to all questions.
A data engineer has set up a Structured Streaming job to read from a table, manipulate the data, and then perform a streaming write into a new table. The provided code block is missing a crucial line to complete the operation. The goal is to have the query execute in multiple micro-batches, process all available data, and then stop automatically. Which of the following code lines should fill the blank to achieve this?
A
trigger(processingTime="500ms")
B
trigger(availableNow=True)
C
trigger(once=True)
D
trigger(processingTime="now")
E
trigger(available_Now="True")_