
Explanation:
Structured Streaming models data streams as a continuously appended table. New data arriving in the stream is treated as new rows being added to an unbounded table, allowing batch-like query operations to apply incrementally. This abstraction aligns with the DataFrame/Dataset API in Spark.
Ultimate access to all questions.
Which statement describes the fundamental programming model employed by Spark Structured Streaming?
A
Structured Streaming leverages the parallel processing of GPUs to achieve highly parallel data throughput.
B
Structured Streaming is implemented as a messaging bus and is derived from Apache Kafka.
C
Structured Streaming relies on a distributed network of nodes that hold incremental state values for cached stages.
D
Structured Streaming models new data arriving in a data stream as new rows appended to an unbounded table.
No comments yet.