
Explanation:
HOPPINGWINDOW(minute, 5, 1)The hopping window is specifically designed for scenarios requiring regular, periodic outputs of overlapping time windows. The combination of a 5-minute window size with a 1-minute hop size perfectly matches the requirement to "count records from the last five minutes every minute." Each output represents a complete 5-minute window that advances by 1 minute for each subsequent output, creating the overlapping coverage needed.
Ultimate access to all questions.
You are using Azure Stream Analytics to ingest data from Azure Event Hubs and output data to an Azure Blob Storage account.
You must output the count of records received from the last five minutes, and this count should be calculated and emitted every minute.
Which windowing function should you use?
A
Session
B
Tumbling
C
Sliding
D
Hopping
No comments yet.