Which statement characterizes the general programming model used by Spark Structured Streaming?
Which statement characterizes the general programming model used by Spark Structured Streaming?
Structured Streaming models new data arriving in a data stream as new rows appended to an unbounded table. This mechanism allows Spark to seamlessly integrate batch and streaming operations, treating the streaming data as a continuously growing table, which it processes incrementally.
D is correct