Easy1 markMultiple Choice
Domain 2.4: Design a data storage solution for non-relational dataDomain 2Non-Relational DataTable StorageCost Optimization
AZ-305 · Question 30 · Domain 2.4: Design a data storage solution for non-relational data
You are designing a simple key-value store for a web application.
The application requires storing user session state data. The data volume is small (under 50 GB), the query patterns are extremely simple (lookup by PartitionKey and RowKey), and the primary business requirement is to minimize costs. Global distribution is not required.
Which storage solution should you recommend?
You are designing a simple key-value store for a web application.
The application requires storing user session state data. The data volume is small (under 50 GB), the query patterns are extremely simple (lookup by PartitionKey and RowKey), and the primary business requirement is to minimize costs. Global distribution is not required.
Which storage solution should you recommend?
Answer options:
A.
Azure Table Storage
B.
Azure Cosmos DB Table API
C.
Azure SQL Database
D.
Azure Cache for Redis Enterprise
How to approach this question
Focus on 'minimize costs', 'simple query patterns', and 'global distribution not required'. Table Storage is the cheapest NoSQL option in Azure.
Full Answer
A.Azure Table Storage✓ Correct
Azure Table Storage
Azure Table Storage is a service that stores non-relational structured data (NoSQL) in the cloud, providing a key/attribute store with a schemaless design. It is significantly cheaper than Azure Cosmos DB. While Cosmos DB offers a Table API, it is designed for premium scenarios requiring global distribution, guaranteed single-digit millisecond latency, and automatic indexing. For a simple, low-cost, single-region key-value store, Azure Table Storage is the best choice.
Common mistakes
Choosing Cosmos DB Table API automatically whenever 'NoSQL' or 'Table' is mentioned, ignoring the strict cost constraints.
Practice the full Azure Solutions Architect Expert AZ-305 Practice Exam 1
55 questions · hints · full answers · grading
More questions from this exam
Q01Contoso Ltd is a global financial institution with 80 Azure subscriptions spread across 4 managem...MediumQ02Fabrikam Inc. operates a hybrid cloud environment with 500 on-premises VMware virtual machines ru...HardQ03A startup company has a single Azure subscription with a monthly budget of $5,000.
The CFO want...EasyQ04You are designing an Azure Sentinel architecture for a Managed Security Service Provider (MSSP). ...MediumQ05A healthcare enterprise is migrating its infrastructure to Azure. They have strict compliance req...Hard
Expert