Evidence review · standard

Eric Brewer — The CAP Theorem

#oip#kimi-import#self-explaining#voxel#thinkers#thinker-eric-brewer
bundle · json · system map · manifest

Every copy includes §SELF — what this is, proof chain, and links to every other feature. No context required.

§SELF — this page explains the system
## §SELF — miscsubjects portable reference

**Principle:** Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.

**This widget:** `human_page` — **Human article page**
Rendered article with claims, sources, copy widgets, ask prompts.
- **article slug:** `thinker-eric-brewer`
- **contains:** rendered article, copy widgets, claims, sources, ask prompts
- **how to use:** Use Copy for LLM or Copy system map — both paste without context.
- **read:** https://miscsubjects.com/a/thinker-eric-brewer

### Logical proof (verify each step)
1. Articles are voxel graphs of tiered claims, not prose blobs. → https://miscsubjects.com/api/articles/constitution
2. Claims link to hash-chained sources via source_ids. → https://miscsubjects.com/api/articles/thinker-eric-brewer/sources
3. Ask reads topology; ingest/claim append to ledger. → https://miscsubjects.com/api/protocol
4. Models queue growth: populate → collaborate → repair → reflex. → https://miscsubjects.com/api/protocol/grow
5. Graph proves its own shape (reflex) and $/claim (yield). → https://miscsubjects.com/graph.html?layer=reflex
6. Full feature index + _explain on every API response. → https://miscsubjects.com/api/articles/system-map

### Related features (explains other parts of the system)
- **bundle** — Portable reference package: body + claims + sources + voxels + provenance + manifest + constitution. · https://miscsubjects.com/api/articles/thinker-eric-brewer/bundle?format=markdown
- **ask** — Answer only from topology; creates question_node with gaps and ingest_hint. · https://miscsubjects.com/api/articles/thinker-eric-brewer/prompts
- **topology** — Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER. · https://miscsubjects.com/api/articles/thinker-eric-brewer/topology

### Full index
- JSON: https://miscsubjects.com/api/articles/system-map
- Markdown: https://miscsubjects.com/api/articles/system-map?format=markdown

*Not medical advice. Tier-honest. Cite claim/source ids.*

<!-- hierarchy:nav -->

Path: OIPThinker ReferenceThinkersEric Brewer — The CAP Theorem

Shelf: Thinkers · Traversal: self-explaining · hierarchical · voxel-ready
Machine root: OIP tree · Registry

Eric Brewer — The CAP Theorem

§SELF — thinker-eric-brewer

What this page is: An explanation of a theorem that governs all distributed computer systems. What it explains: The CAP theorem and why distributed systems must choose between consistency and availability. Why read it: To understand why no distributed database can be fully consistent and fully available at the same time.

What the CAP Theorem Is

The CAP theorem was proposed by Eric Brewer (born 1965), a computer scientist at UC Berkeley and Google, in a keynote address in 2000. It was formally proved in 2002 by Seth Gilbert and Nancy Lynch of MIT.

CAP names three properties of a distributed data store (a system where data is stored across multiple connected computers):

  • Consistency (C): Every read receives the most recent write. All nodes (individual computers in the system) see the same data at the same time.
  • Availability (A): Every request receives a non-error response. The system responds to every query, even if the data is not the most recent.
  • Partition tolerance (P): The system continues to operate despite network partitions — situations where messages between nodes are lost or delayed.

The theorem states: in a distributed data store, you can guarantee at most two of the three properties.

Why It Matters

The theorem matters because network partitions (P) are inevitable in real systems. Cables fail. Routers reboot. Data centers lose connectivity. If a partition occurs, the system must choose: either preserve consistency (C) by refusing some requests, or preserve availability (A) by serving possibly stale data.

This is not a technological limitation that better engineering will solve. It is a logical limit proved by the Gilbert-Lynch proof.

The Key Idea: The Trade-off

If the network partitions (P), you must choose between consistency (C) and availability (A). You cannot have both.

  • Choose CP: The system blocks writes until consistency is restored. Some requests fail. The system is consistent but not fully available.
  • Choose AP: The system accepts all writes and serves all reads. Some responses contain stale data. The system is available but not fully consistent.

Most real-world distributed systems choose AP and handle consistency asynchronously (in the background). They accept that different nodes may see different data for a short period, and they resolve differences later.

What Brewer Got Right

  • Identified the three properties that matter in distributed systems design.
  • Showed that the choice between them is a logical necessity, not an engineering failure.
  • Forced system designers to be explicit about which properties they prioritize.

What Brewer Got Wrong or Left Unfinished

  • The theorem is often stated as "pick two of three," which implies you could build a system that is CA (consistent and available) but not partition-tolerant. In practice, network partitions are unavoidable, so every real system must tolerate partitions. The actual choice is between CP and AP, not among all three pairs.
  • The theorem does not quantify the trade-off. It does not say how much consistency you lose for a given gain in availability.
  • Brewer later noted that the theorem describes a binary at partition time, but real systems operate on a spectrum between strong consistency and eventual consistency.

How It Connects to Other Ideas

  • ACID vs. BASE: ACID (Atomicity, Consistency, Isolation, Durability) describes the properties of traditional relational databases, which prioritize consistency. BASE (Basically Available, Soft state, Eventual consistency) describes the properties of many distributed databases, which prioritize availability. CAP explains why BASE exists.
  • Consensus protocols (Paxos, Raft): These algorithms achieve strong consistency in distributed systems by requiring a majority of nodes to agree before committing a write. They implement the CP choice. CAP explains why these protocols are necessary and why they add latency.

Sources

  • Brewer, Eric. "Towards Robust Distributed Systems" (keynote, PODC 2000).
  • Gilbert, Seth, and Nancy Lynch. "Brewer's Conjecture and the Feasibility of Consistent, Available, Partition-Tolerant Web Services." ACM SIGACT News 33, no. 2 (2002): 51–59.

---

Up the tree

Related on this shelf

Machine surfaces

  • Public page: https://miscsubjects.com/a/thinker-eric-brewer
  • JSON article: https://miscsubjects.com/api/articles/thinker-eric-brewer
  • OIP ask: https://miscsubjects.com/api/dispatch?ask=Eric%20Brewer%20%E2%80%94%20The%20CAP%20Theorem

thinker-eric-brewer · condition map

Evidence map

Hover a node — its path lights up. Click to open the article.

Full map →
33
Thinkers on shelf
Talk to this article
Tap a phone. Ask anything about Eric Brewer — The CAP Theorem. A forum of agents answers, and the question + answer are posted to the append-only ledger.
Questions queue for the coding-agent forum (one answer per cron tick). Real phone instead: iMessage +14245134626 · WhatsApp. Thread + proof: JSON · ledger.
Ask this article · 2 suggested prompts

Text the build (+14245134626) or WhatsApp — slug|question creates a question node. Paste evidence with ingest slug|q:NODE_ID|your paste.

For my medical situation, what can you answer from your catalogue about Eric Brewer — The CAP Theorem — and what would you need me to tell you first?
ask thinker-eric-brewer condition gaps · paste includes §SELF
What good and bad outcomes are documented for Eric Brewer — The CAP Theorem (studies vs anecdotes)?
ask thinker-eric-brewer good bad experiences · paste includes §SELF
Add your experience or question
Think this article is wrong?
Call bullshit on CharlieOS →
Loading more articles…