DP-900 Describe core data concepts Practice Question
You are a data architect at a global retail company. The company has an Azure Data Lake Storage Gen2 account that stores petabytes of clickstream data. They need to provide near real-time analytics dashboards for regional managers. The data arrives in batches every 5 minutes. Currently, they use Azure Databricks to transform the data and load it into Azure Synapse Analytics, but the dashboards show data that is 30 minutes old. The business requires dashboards to reflect data within 10 minutes of ingestion. You propose a new solution. Which approach should you recommend?
⚠ Common exam trap
Many candidates assume batch tools like Data Factory or Databricks can be tuned to meet near real-time SLAs, but they fundamentally operate on file-based or micro-batch paradigms that cannot match the sub-minute latency of a true streaming pipeline with Event Hubs and Stream Analytics.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Ingest data into Azure Event Hubs, use Azure Stream Analytics to process and output to Power BI for real-time dashboards.
It uses Azure Event Hubs for low-latency ingestion and Azure Stream Analytics for real-time processing, enabling near real-time dashboards in Power BI with sub-minute latency. This architecture bypasses the batch-oriented pipeline that causes the current 30-minute delay, meeting the 10-minute requirement.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Keep current pipeline but replace Synapse with Azure Analysis Services for faster query performance.
Why it's wrong here
Replacing the serving engine with Azure Analysis Services would only accelerate interactive queries over already-loaded data; it does nothing to shorten the ingestion and transformation steps upstream. AAS requires a refreshed tabular model—populated from the Data Lake or Synapse—so dashboard freshness remains bounded by the existing batch cadence. Because the 10-minute requirement is an end-to-end freshness constraint, a faster query engine alone cannot close the gap.
- ✗
Use Azure Data Factory with tumbling window triggers every 5 minutes to load data from Data Lake to Synapse.
Why it's wrong here
A Data Factory tumbling window trigger at 5-minute intervals still represents scheduled batch orchestration, not event-driven streaming. Every window adds at least a five-minute delay from data arrival to pipeline start, and the actual Copy activity into Synapse introduces additional execution time that can easily push end-to-end latency beyond 10 minutes. It also creates overlapping windows and retries, which increase operational complexity but do not deliver the low-latency, continuous processing required.
- ✓
Ingest data into Azure Event Hubs, use Azure Stream Analytics to process and output to Power BI for real-time dashboards.
Why this is correct
Event Hubs captures telemetry continuously and Stream Analytics runs persistent SQL-style queries over that stream, producing low-latency results directly in Power BI's streaming dataset. Because processing begins as events arrive and there is no dependency on file batches, dashboards typically reflect updates within seconds rather than minutes. This satisfies the 10-minute freshness SLA and provides the real-time visualization experience the business expects.
- ✗
Increase the number of Databricks clusters and use Auto Loader to speed up transformations.
Why it's wrong here
Scaling Databricks clusters and using Auto Loader only accelerates the existing file-based batch processing; Auto Loader detects new files in object storage and triggers structured streaming micro-batches, but the pipeline is still constrained by how often files appear and how long each batch takes to write to the serving layer. More workers may shrink processing duration, but the design remains batch-to-batch and cannot guarantee bounded sub-10-minute latency during traffic spikes. The requirement demands a streaming-first architecture, not faster compute on the same data movement path.
Go deeper
Related to this question
Learn chapter
Data Roles and Core Concepts
Key term
Pipeline
A pipeline is an automated series of steps that takes code from development to production, ensuring quality and speed.
Key term
Data lake
A data lake is a centralized storage repository that holds vast amounts of raw data in its native format until it is needed for analysis.
About these practice questions
Courseiva writes every DP-900 question from scratch — 820 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This DP-900 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DP-900 exam.