DP-900 Describe an analytics workload on Azure Practice Question
A retail company receives a continuous stream of customer orders from their website via Azure Event Hubs. They also receive daily inventory updates from suppliers as CSV files uploaded to Azure Blob Storage. The company needs to calculate real-time order fulfillment availability by joining the streaming orders with the latest inventory snapshot. Additionally, they generate nightly sales reports from historical order data. Which Azure service should they use for the real-time processing component?
⚠ Common exam trap
Test-takers frequently choose Azure Databricks because they associate it with 'real-time' processing, but Stream Analytics is the simpler, more cost-effective, and purpose-built service for this exact pattern of joining streaming data with static reference data.
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
✓
Azure Stream Analytics
Azure Stream Analytics is the correct choice because it is designed for real-time data processing, allowing you to join streaming data from Event Hubs with static or reference data (like the latest inventory snapshot from Blob Storage) using SQL-like queries. This enables the calculation of real-time order fulfillment availability as orders arrive, which is the core 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.
- ✗
Azure Data Factory
Why it's wrong here
Azure Data Factory is a cloud-based ETL and data integration tool that orchestrates batch pipelines, such as copying data on a recurring schedule or after some conditionally triggered activity. It uses linked services, datasets, and activities that spin up compute on demand, but it lacks native streaming ingestion and event-time processing semantics required for continuous, low-latency analytics. Its strength lies in periodic data movement, not real-time order stream processing.
When this WOULD be correct
A company needs to ingest CSV files from Blob Storage daily, transform the data, and load it into a data warehouse. Azure Data Factory would be correct for this scheduled batch ETL workload.
- ✓
Azure Stream Analytics
Why this is correct
Azure Stream Analytics is the only service among the options that is purpose-built for real-time stream processing. It natively ingests data from sources like Azure Event Hubs and IoT Hub, runs continuous SQL-like queries with windowing and reference data joins, and can emit results to sinks such as Power BI or SQL Database with sub-minute latency. For a continuous stream of customer orders, it provides a managed, low-latency pipeline without needing custom code.
- ✗
Azure Databricks
Why it's wrong here
Azure Databricks does offer Spark Structured Streaming, which can process the order stream in micro-batches, but that introduces cluster management overhead, requires writing Scala, Python, or SQL streaming code, and typically incurs higher cost and latency than a dedicated PaaS. For a simple, continuous stream that needs immediate joins or aggregations, Databricks is overkill unless you're also doing advanced machine learning or complex big-data transformation. Its micro-batch model is not tuned for sub-second latency out-of-the-box.
When this WOULD be correct
Azure Databricks would be correct if the question required complex data transformations, machine learning model inference on streaming data, or advanced analytics like time-series forecasting on the combined order and inventory data, where Spark's distributed computing and MLlib are needed.
- ✗
Azure Synapse Pipelines
Why it's wrong here
Azure Synapse Pipelines is a data integration and orchestration service, essentially Azure Data Factory's engine inside the Synapse studio, designed for scheduled, batch-oriented workflows. It moves data from numerous sources to destinations, executes script or notebook activities, and triggers on timers or files, but it does not process events in-flight or run continuous streaming queries. Thus it cannot deliver real-time analytics on a live order stream.
When this WOULD be correct
Azure Synapse Pipelines would be correct if the question asked for a service to orchestrate nightly batch data movement from Azure Blob Storage to Azure Synapse Analytics for generating sales reports, involving scheduling and monitoring of data pipelines.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The DP-900 exam frequently reuses these exact scenarios with slightly different constraints.
✓Azure Stream AnalyticsCorrect answer▾
Why this is correct
Azure Stream Analytics is the only service among the options that is purpose-built for real-time stream processing. It natively ingests data from sources like Azure Event Hubs and IoT Hub, runs continuous SQL-like queries with windowing and reference data joins, and can emit results to sinks such as Power BI or SQL Database with sub-minute latency. For a continuous stream of customer orders, it provides a managed, low-latency pipeline without needing custom code.
✗Azure Data FactoryWrong answer — click to see why▾
Why this is wrong here
Azure Data Factory is an ETL and data orchestration service, not designed for real-time stream processing. It cannot perform continuous queries on streaming data from Event Hubs.
★ When this WOULD be the correct answer
A company needs to ingest CSV files from Blob Storage daily, transform the data, and load it into a data warehouse. Azure Data Factory would be correct for this scheduled batch ETL workload.
Why candidates choose this
Candidates may confuse Data Factory's data movement capabilities with real-time processing, or think it can handle streaming because it integrates with various sources.
✗Azure DatabricksWrong answer — click to see why▾
Why this is wrong here
Azure Databricks is optimized for big data analytics and machine learning, not for low-latency, continuous streaming joins with simple SQL-like queries. It requires more setup and is overkill for real-time order fulfillment calculations compared to Azure Stream Analytics.
★ When this WOULD be the correct answer
Azure Databricks would be correct if the question required complex data transformations, machine learning model inference on streaming data, or advanced analytics like time-series forecasting on the combined order and inventory data, where Spark's distributed computing and MLlib are needed.
Why candidates choose this
Candidates may associate Databricks with streaming (Spark Structured Streaming) and think it can handle real-time joins, overlooking that Stream Analytics is simpler and purpose-built for such scenarios with direct Event Hubs and Blob Storage integration.
✗Azure Synapse PipelinesWrong answer — click to see why▾
Why this is wrong here
Azure Synapse Pipelines is designed for data orchestration and ETL/ELT workflows, not for real-time stream processing. The question requires joining streaming orders with inventory snapshots in real time, which is a stream processing task, not a pipeline orchestration task.
★ When this WOULD be the correct answer
Azure Synapse Pipelines would be correct if the question asked for a service to orchestrate nightly batch data movement from Azure Blob Storage to Azure Synapse Analytics for generating sales reports, involving scheduling and monitoring of data pipelines.
Why candidates choose this
Candidates may confuse Synapse Pipelines with a real-time processing service because 'Synapse' is associated with analytics and 'Pipelines' sounds like it could handle data flows, but it lacks native stream processing capabilities.
Analysis generated from the official DP-900blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Quick reference
Azure Blob Storage Tier Comparison
| Tier | Storage Cost | Retrieval Cost | Latency | Use Case |
|---|---|---|---|---|
| Hot | Highest | Lowest | Immediate | Active data, frequent reads |
| Cool | Lower | Higher | Immediate | Data accessed < once / month |
| Cold | Lower still | Higher | Immediate | Data accessed < once / quarter |
| Archive | Lowest | Highest + rehydration delay | Hours | Long-term compliance retention |
Go deeper
Related to this question
Learn chapter
Data Roles and Core Concepts
Key term
Service
A service is a software component or system that performs a specific function and is available to be used by other programs or users over a network.
Key term
Azure Stream Analytics
Azure Stream Analytics is a fully managed, real-time data processing service that analyzes and transforms high volumes of streaming data from various sources to deliver low-latency insights and trigger actions.
About these practice questions
This DP-900 question is part of Courseiva's 820-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam 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.