0 votes
in Spark Preliminaries by
What does it mean to operate in a sliding window fashion?

1 Answer

0 votes
by

Sliding Window controls how data packets move from one computer network to another. Spark Streaming offers windowed computations, in which changes to RDDs are made over a sliding data window. When the window moves, the RDDs that fall within the new window are added together and processed to make new RDDs of the windowed DStream.

...