During a WAN blip between regions, a public city status page should keep answering rather than go dark, even if some counts are briefly stale. Which CAP-oriented choice fits best?
Select an answer to reveal the explanation.
Short Explanation
A status page that goes black during a WAN hiccup is worse than a slightly old number for most citizens. That is an availability-first call under partition. Serve something useful now and catch up when the network heals.
Full Explanation
Availability-oriented (AP) designs keep responding during network partitions even if replicas temporarily diverge. For a public status page, brief staleness is often preferable to complete outage. Consistency-first alternatives would block or fail requests until agreement is restored, which can darken the citizen experience. Explicitly preferring availability under partition matches this civic operational priority.