Question 185 of 161
AZ-305 Design data storage solutions Practice Question
A startup is building a social media analytics platform that processes streaming data. They need a data store for time-series events with high write throughput and fast timestamp-based range queries. Which Azure data store is most suitable for this workload?
⚠ Common exam trap
Many candidates choose Cosmos DB for its flexibility and global distribution, but for a simple, high-throughput time-series workload with timestamp-based queries, Azure Table Storage is the most cost-effective and performant choice, as Cosmos DB adds unnecessary complexity and cost.
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 Table Storage
Azure Table Storage is a NoSQL key-value store that supports high-volume, low-latency writes and efficient range queries on the PartitionKey and RowKey, which can be structured as a timestamp for time-series data. Its schema-less design and ability to scale to massive throughput without sharding overhead make it ideal for streaming event ingestion and timestamp-based retrieval.
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 Cosmos DB with SQL API
Why it's wrong here
Cosmos DB’s SQL API lacks a native time-series optimisation; its indexing model is document-centric, not optimised for the high-frequency append and timestamp-range scans required by streaming event ingestion. It is tempting because Cosmos DB offers low-latency writes and flexible schemas, making it a strong candidate for globally distributed, real-time applications such as user-profile stores or session state, where point-reads and key-based lookups dominate rather than time-windowed queries.
- ✗
Azure SQL Database with columnstore index
Why it's wrong here
Azure SQL Database with columnstore indexes can compress and accelerate analytic scans, but as an OLTP engine it is not architected for sustained, high-frequency ingestion of time-series events. Each row insert incurs transaction-log writes, buffer-pool overhead, and index/columnstore maintenance, so extremely high write rates lead to contention and escalating DTU/vCore costs. While columnstore helps reporting, it neither provides the simple timestamp-range access pattern of a key-value store nor scales to the per-cost throughput of Azure Table Storage.
- ✓
Azure Table Storage
Why this is correct
Azure Table Storage is a schema-less key-value store where data is addressed by PartitionKey and RowKey, making it a natural fit for IoT-style time-series data. Using a partition key such as device ID and a row key such as inverted timestamp allows efficient range scans for a given device over a time window, while inserts are cheap and highly parallel across partitions. This design delivers low latency at very low cost without the operational complexity of a SQL-based service, which is why it is the correct recommendation.
- ✗
Azure Data Lake Storage Gen2
Why it's wrong here
Azure Data Lake Storage Gen2 is a Hadoop-compatible distributed file system built on Blob storage, intended for batch analytics and ETL pipelines rather than per-record, low-latency writes. It exposes a hierarchical namespace and supports massive parallel file processing, but writing millions of individual small events to append blobs would produce poor throughput and high latency, and its query engine is not optimized for transactional key- or timestamp-based range lookups. Therefore, it fails the requirements of high-frequency ingestion and immediate time-range queries.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 11, 2026
This AZ-305 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 AZ-305 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.