- A
Create a materialized view container with a partition key optimized for the read queries.
Materialized views with optimized partition keys reduce RU consumption and latency for common queries.
- B
Use stored procedures to aggregate data on read.
Why wrong: Stored procedures run on the server but still process full documents, not optimizing read cost.
- C
Increase the provisioned RU/s on the source container.
Why wrong: Increasing RU only helps with throughput, not with read efficiency for partial data.
- D
Enable Time-to-Live (TTL) on the source container to automatically expire old data.
Why wrong: TTL is for data retention, not for read performance.
Quick Answer
The correct answer is to create a materialized view container with a partition key optimized for the read queries. This works because the materialized view pattern with Cosmos DB change feed allows you to pre-join and reshape data into a separate container, where the partition key is chosen specifically to match the most frequent read patterns—reducing both latency and Request Unit (RU) consumption by avoiding full document scans. On the Microsoft Azure Data Fundamentals DP-900 exam, this scenario tests your understanding of how to decouple write-optimized storage from read-optimized views, a common trap being that increasing RUs or using stored procedures addresses symptoms rather than the root design issue. Remember the memory tip: “Reads need their own key”—if your reads query by customer ID, your materialized view’s partition key should be that customer ID, not the original document’s partition key.
DP-900 Practice Question: Describe considerations for working with non-relational data on Azure
This DP-900 practice question tests your understanding of describe considerations for working with non-relational data on azure. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A company uses Azure Cosmos DB with the MongoDB API for a customer profile service. The service handles 10,000 writes per second and 50,000 reads per second. The data is 1 KB per document. The company needs to reduce read latency for frequently accessed customers and minimize RU consumption. Currently, the service reads the entire document for every request. They decide to implement a materialized view pattern using Azure Cosmos DB change feed and a separate container. Which additional step should they take to optimize read performance and cost?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"minimum / minimize"Why it matters: Asks for the least resource use — fewest addresses, smallest subnet, lowest overhead. Eliminate over-provisioned options even if they would technically work.
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
Create a materialized view container with a partition key optimized for the read queries.
Using a separate container with a different partition key (option B) allows the materialized view to be optimized for the read pattern, reducing RU cost and latency. Option A (increasing RU) does not address the root cause. Option C (adding TTL) would delete data, not improve reads. Option D (using stored procedures) is for transactional logic, not read optimization.
Key principle: NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Create a materialized view container with a partition key optimized for the read queries.
Why this is correct
Materialized views with optimized partition keys reduce RU consumption and latency for common queries.
Clue confirmation
The clue word "minimum / minimize" in the question point toward this answer.
Related concept
Static NAT maps one inside address to one outside address.
- ✗
Use stored procedures to aggregate data on read.
Why it's wrong here
Stored procedures run on the server but still process full documents, not optimizing read cost.
- ✗
Increase the provisioned RU/s on the source container.
Why it's wrong here
Increasing RU only helps with throughput, not with read efficiency for partial data.
- ✗
Enable Time-to-Live (TTL) on the source container to automatically expire old data.
Why it's wrong here
TTL is for data retention, not for read performance.
Common exam traps
Common exam trap: NAT rules depend on direction and matching traffic
NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.
Detailed technical explanation
How to think about this question
NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.
KKey Concepts to Remember
- Static NAT maps one inside address to one outside address.
- PAT allows many inside hosts to share one public address using ports.
- Inside local and inside global describe the private and translated addresses.
- NAT ACLs identify traffic for translation, not always security filtering.
TExam Day Tips
- Identify inside and outside interfaces first.
- Check whether the scenario needs static NAT, dynamic NAT or PAT.
- Do not confuse NAT matching ACLs with normal packet-filtering intent.
Key takeaway
NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.
Real-world example
How this comes up in practice
A startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.
What to study next
Got this wrong? Here's your next step.
Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related DP-900 NAT questions on configuration and troubleshooting.
- →
Describe considerations for working with non-relational data on Azure — study guide chapter
Learn the concepts, then practise the questions
- →
Describe considerations for working with non-relational data on Azure practice questions
Targeted practice on this topic area only
- →
All DP-900 questions
982 questions across all exam domains
- →
Microsoft Azure Data Fundamentals DP-900 study guide
Full concept coverage aligned to exam objectives
- →
DP-900 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related DP-900 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Describe core data concepts practice questions
Practise DP-900 questions linked to Describe core data concepts.
Describe an analytics workload on Azure practice questions
Practise DP-900 questions linked to Describe an analytics workload on Azure.
Identify considerations for relational data on Azure practice questions
Practise DP-900 questions linked to Identify considerations for relational data on Azure.
Describe considerations for working with non-relational data on Azure practice questions
Practise DP-900 questions linked to Describe considerations for working with non-relational data on Azure.
DP-900 fundamentals practice questions
Practise DP-900 questions linked to DP-900 fundamentals.
DP-900 scenario practice questions
Practise DP-900 questions linked to DP-900 scenario.
DP-900 troubleshooting practice questions
Practise DP-900 questions linked to DP-900 troubleshooting.
Practice this exam
Start a free DP-900 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this DP-900 question test?
Describe considerations for working with non-relational data on Azure — This question tests Describe considerations for working with non-relational data on Azure — Static NAT maps one inside address to one outside address..
What is the correct answer to this question?
The correct answer is: Create a materialized view container with a partition key optimized for the read queries. — Using a separate container with a different partition key (option B) allows the materialized view to be optimized for the read pattern, reducing RU cost and latency. Option A (increasing RU) does not address the root cause. Option C (adding TTL) would delete data, not improve reads. Option D (using stored procedures) is for transactional logic, not read optimization.
What should I do if I get this DP-900 question wrong?
Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related DP-900 NAT questions on configuration and troubleshooting.
Are there clue words in this question I should notice?
Yes — watch for: "minimum / minimize". Asks for the least resource use — fewest addresses, smallest subnet, lowest overhead. Eliminate over-provisioned options even if they would technically work.
What is the key concept behind this question?
Static NAT maps one inside address to one outside address.
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 20, 2026
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.
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.