BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeDesigning Microsoft Azure Infrastructure Solutions (AZ-305)Quick Note — Recommend a Solution for Storing Semi-Structured Data
LO Quick Note856 words

Quick Note — Recommend a Solution for Storing Semi-Structured Data

AZ-305 › Unit 2 › Design data storage for semi-structured and unstructured data › Recommend a solution for storing semi-structured data

Quick Note — Recommend a Solution for Storing Semi-Structured Data

Semi-structured data is the lifeblood of modern cloud applications — JSON product catalogs, IoT telemetry, user profiles, social graphs, and event streams that don't fit neatly into rows and columns but aren't truly amorphous either. On the AZ-305 exam, candidates are asked to choose the right Azure data service for these workloads, configure it correctly, and reason about the cost and performance trade-offs.…

Retrieval target

Objective
Recommend a Solution for Storing Semi-Structured Data
Mode
Closed-book recall
Target time
5 minutes
Escalation
Open the full lesson after a miss

Decision anchors

PromptCompact answer
Azure Cosmos DBA globally distributed, multi-model, fully managed NoSQL database. 99.999% SLA for multi-region accounts, 99.99% for single region. Guarantees <10 ms p99 latency for reads and writes. Five data models exposed through five APIs (NoSQL/SQL, MongoDB, Cassandra, Gremlin, Table) — pick the one that matches your app or driver ecosystem.
Cosmos DB API surface — what each is forNoSQL (default) — document JSON store, native SDK + SQL-like query. MongoDB — wire-compatible with Mongo 3.x–6.x drivers. Cassandra — wire-compatible with Cassandra CQL drivers. Gremlin — graph traversal (vertices + edges). Table — wire-compatible with Azure Table Storage clients but with Cosmos guarantees (global dist, lower latency). The underlying engine is the same; APIs are facades over it.
Partition key (Cosmos DB)The property on a container's items used to distribute data across logical & physical partitions. Items with the same key live together; each logical partition has a 20 GB cap and shares an RU budget. Pick a key with high cardinality + even access pattern + no hot spot (e.g., tenantId+date, not region). Changing it later requires a copy.
Request Unit per second (RU/s)Cosmos DB's throughput currency. One RU is the cost of a 1 KB point-read of a single-property doc. Writes cost ~5 RU, complex queries far more. You provision RU/s at the container or database level (autoscale or manual) or pick Serverless (pay-per-RU consumed, capped throughput) for spiky / dev workloads. RU exhaustion → HTTP 429 with retry-after.

Read the answers once, then cover the right-hand column and reconstruct each one from the prompt. A useful answer names the requirement, the recommended control or service boundary, and the nearest alternative it rejects. If you can only recognize the answer after seeing it, retrieval is not yet secure.

Turn recall into an architecture answer

For recommend a solution for storing semi-structured data, state: choose X because constraints A and B apply; reject Y because it fails C; validate with evidence D.

Ninety-second explanation

Without notes, explain:

  1. What requirement signals this learning objective rather than a neighbouring one?
  2. Which two solution families are most likely to be compared?
  3. Which hard constraint eliminates the strongest distractor?
  4. What identity, network, data, or failure boundary must appear in the design?
  5. Which operational test would prove the recommendation works?

Then compare your explanation with the full lesson. Record the missing decision rule—not merely the missed product name—in your error log.

Loading flashcards…

When to open the full lesson

Open the curriculum-linked lesson when you cannot explain a comparison, when a scenario depends on a numeric limit or SKU feature, or when the service is on a retirement path. Use current Microsoft Learn documentation for availability, limits, pricing, naming, and migration milestones; the quick note is intentionally compact.

Source and freshness

Derived from the linked AZ-305 lesson and retrieval deck, grounded in both attached course sources. Reviewed 2026-08-02. Current Microsoft documentation controls changing product contracts.

All Designing Microsoft Azure Infrastructure Solutions (AZ-305) Study Resources

Related Notes

  • Recommend a Solution for Storing Semi-Structured Data — Lesson4,299 words
  • AZ-305 Exam Map and Design Decision Playbook652 words
  • Unit 1 Capstone — Design identity, governance, and monitoring solutions668 words
  • Unit 1 Roadmap — Design identity, governance, and monitoring solutions639 words
  • Cram Sheet — Design authentication and authorization solutions632 words
  • Design Authentication and Authorization Solutions — Lesson4,263 words
  • Design Studio — Design authentication and authorization solutions734 words
  • Quick Note — Recommend an Authentication Solution758 words
  • Recommend an Authentication Solution — Lesson4,868 words
  • Quick Note — Recommend an Identity Management Solution796 words
  • Recommend an Identity Management Solution — Lesson5,982 words
  • Quick Note — Recommend a Solution for Authorizing Access to Azure Resources745 words

Ready to study Designing Microsoft Azure Infrastructure Solutions (AZ-305)?

Practice tests, flashcards, and all study notes — free, no sign-up.

Start Studying

Ready to study Designing Microsoft Azure Infrastructure Solutions (AZ-305)?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free
Designing Microsoft Azure Infrastructure Solutions (AZ-305) ResourcesExplore All HivesBlogHome

© 2026 BrainyBee. Free AI-powered exam prep.

Recommend a Solution for Storing Semi-Structured Data — quick retrieval

Card 1 of 4

Front of flashcard 1 of 4

Azure Cosmos DB

easy

A globally distributed, multi-model, fully managed NoSQL database. 99.999%99.999\%99.999% SLA for multi-region accounts, 99.99%99.99\%99.99% for single region. Guarantees <10 ms p99 latency for reads and writes. Five data models exposed through five APIs (NoSQL/SQL, MongoDB, Cassandra, Gremlin, Table) — pick the one that matches your app or driver ecosystem.

cosmos-db

Recommend a Solution for Storing Semi-Structured Data — quick retrieval

Card 1

Front

Azure Cosmos DB

Back

A globally distributed, multi-model, fully managed NoSQL database. 99.999%99.999\%99.999% SLA for multi-region accounts, 99.99%99.99\%99.99% for single region. Guarantees <10 ms p99 latency for reads and writes. Five data models exposed through five APIs (NoSQL/SQL, MongoDB, Cassandra, Gremlin, Table) — pick the one that matches your app or driver ecosystem.

Card 2

Front

Cosmos DB API surface — what each is for

Back

NoSQL (default) — document JSON store, native SDK + SQL-like query. MongoDB — wire-compatible with Mongo 3.x–6.x drivers. Cassandra — wire-compatible with Cassandra CQL drivers. Gremlin — graph traversal (vertices + edges). Table — wire-compatible with Azure Table Storage clients but with Cosmos guarantees (global dist, lower latency). The underlying engine is the same; APIs are facades over it.

Card 3

Front

Partition key (Cosmos DB)

Back

The property on a container's items used to distribute data across logical & physical partitions. Items with the same key live together; each logical partition has a 202020 GB cap and shares an RU budget. Pick a key with high cardinality + even access pattern + no hot spot (e.g., tenantId+date, not region). Changing it later requires a copy.

Card 4

Front

Request Unit per second (RU/s)

Back

Cosmos DB's throughput currency. One RU is the cost of a 111 KB point-read of a single-property doc. Writes cost ~555 RU, complex queries far more. You provision RU/s at the container or database level (autoscale or manual) or pick Serverless (pay-per-RU consumed, capped throughput) for spiky / dev workloads. RU exhaustion → HTTP 429 with retry-after.

Recommend a Solution for Storing Semi-Structured Data — quick retrieval

Card 1

Front

Azure Cosmos DB

Back

A globally distributed, multi-model, fully managed NoSQL database. 99.999%99.999\%99.999% SLA for multi-region accounts, 99.99%99.99\%99.99% for single region. Guarantees <10 ms p99 latency for reads and writes. Five data models exposed through five APIs (NoSQL/SQL, MongoDB, Cassandra, Gremlin, Table) — pick the one that matches your app or driver ecosystem.

Card 2

Front

Cosmos DB API surface — what each is for

Back

NoSQL (default) — document JSON store, native SDK + SQL-like query. MongoDB — wire-compatible with Mongo 3.x–6.x drivers. Cassandra — wire-compatible with Cassandra CQL drivers. Gremlin — graph traversal (vertices + edges). Table — wire-compatible with Azure Table Storage clients but with Cosmos guarantees (global dist, lower latency). The underlying engine is the same; APIs are facades over it.

Card 3

Front

Partition key (Cosmos DB)

Back

The property on a container's items used to distribute data across logical & physical partitions. Items with the same key live together; each logical partition has a 202020 GB cap and shares an RU budget. Pick a key with high cardinality + even access pattern + no hot spot (e.g., tenantId+date, not region). Changing it later requires a copy.

Card 4

Front

Request Unit per second (RU/s)

Back

Cosmos DB's throughput currency. One RU is the cost of a 111 KB point-read of a single-property doc. Writes cost ~555 RU, complex queries far more. You provision RU/s at the container or database level (autoscale or manual) or pick Serverless (pay-per-RU consumed, capped throughput) for spiky / dev workloads. RU exhaustion → HTTP 429 with retry-after.