
Explanation:
A hopping window with 5-second hop size and 10-second window size creates overlapping windows that advance every 5 seconds. This means:
A tumbling window with 10-second intervals would be the appropriate choice because:
The hopping window with 5-second hop creates 50% overlap between consecutive windows, causing tweets in the overlapping regions to be counted multiple times. This fundamentally contradicts the "counted only once" requirement.
Conclusion: The solution does NOT meet the goal because the overlapping nature of the hopping window causes tweet duplication.
Ultimate access to all questions.
You are designing an Azure Stream Analytics solution to count tweets in each 10-second window, ensuring each tweet is counted only once. You implement a hopping window with a hop size of 5 seconds and a window size of 10 seconds. Does this solution meet the goal?
A
Yes
B
No
No comments yet.