Practice free →
HomeAzure AZ-305cloudcomputingaz305datastorage › Which Cosmos DB consistency level should an arch…

Which Cosmos DB consistency level should an architect recommend for a globally-deployed app where each USER must read their own writes but other sessions tolerate slight lag?

AEventual only (no read-your-writes)
BStrong consistency only (highest latency, single-region writes)
CSession consistency (the Cosmos default — read-your-writes within a session, bounded cross-session staleness)
DNo consistency
Answer & Solution
Correct answer: C. Session consistency (the Cosmos default — read-your-writes within a session, bounded cross-session staleness)
Session is the canonical read-your-writes balance (per AZ-305 §2 NoSQL). The other options either over-pay on latency or break the read-your-writes requirement.
Solve this in the app — Azure AZ-305 practice & 24k+ MCQs →
Related questions