
Explanation:
A: Five-minute Sliding window ❌
B: Five-minute Session window ❌
C: Five-minute Hopping window with one-minute hop ❌
D: Five-minute Tumbling window ✅
The tumbling window is the optimal choice because it creates discrete, non-overlapping time intervals where each event (tweet) is assigned to exactly one window. This ensures that tweets are never double-counted across different output periods, while still providing the required 5-minute aggregation intervals.
Ultimate access to all questions.
You use Azure Stream Analytics to ingest Twitter data from Azure Event Hubs and output the results to an Azure Blob storage account. You need to output the count of unique tweets every five minutes, with each tweet counted only once. Which windowing function should you use?
A
a five-minute Sliding window
B
a five-minute Session window
C
a five-minute Hopping window that has a one-minute hop
D
a five-minute Tumbling window
No comments yet.