Describe an analytics workload1 / 5
A data team is building a real-time fraud detection system. Which pattern best describes an architecture where events are processed and analyzed as they arrive, before being stored?
CorrectIncorrect
Alex
Stream processing analyzes data continuously as events arrive, enabling real-time decisions like fraud detection. Unlike batch processing (which accumulates data and processes at intervals) or data warehousing (optimized for historical analysis), stream processing delivers sub-second latency. In Azure, Event Hubs ingests event streams, and Stream Analytics applies SQL-like queries with windowed aggregations (tumbling, hopping, sliding windows) for real-time pattern detection. Data archival stores data long-term but does not process it in flight. Key differentiator: stream = continuous, real-time; batch = scheduled, accumulated. Ref: https://learn.microsoft.com/azure/stream-analytics/stream-analytics-solution-patterns
Sourcelearn.microsoft.com
Follow-up answers are available in the app. Create a free account — no credit card required.
Question 1 of 5
Create a free account