recall

← recall

tumbling window term

fixed-size, non-overlapping time windows

Stream processing: divide time into fixed-size buckets (every 60s); each event belongs to exactly one window. Simplest aggregation pattern. Compare sliding (overlapping) and session (gap-based) windows. Edge case: late events arriving after window closure need explicit handling.

aliases: fixed window

topics: data-pipelines, streaming

references: