
Explanation:
For this Azure Stream Analytics scenario, the requirement is to calculate a running average of shopper counts during the previous 15 minutes, calculated at five-minute intervals.
HOPPINGWINDOW(minute, 15, 5)Hopping windows are the optimal choice when you need periodic reporting of aggregates over a fixed historical period. The 15-minute window with 5-minute hops ensures the running average is updated regularly while maintaining the required historical context, making it ideal for monitoring retail shopper patterns.
Ultimate access to all questions.
You are designing an Azure Stream Analytics job to process incoming data from retail sensors. The requirement is to output a running average of shopper counts for the last 15 minutes, with the calculation being performed every 5 minutes.
Which window type should you use?
A
snapshot
B
tumbling
C
hopping
D
sliding
No comments yet.