Skip to content

RetrievalMAR 27, 2026 · 3 min read

Retrieval is the art of forgetting

RAG systems are praised for what they remember. They succeed or fail by what they exclude. Notes toward a subtractive theory of retrieval.

The pitch for retrieval-augmented generation has always been additive: your model doesn’t know your documents, so we’ll add them. Add an index, add embeddings, add the top-k chunks to the prompt. The whole architecture is described in the vocabulary of acquisition, as if the goal were a system that holds more.

But sit with a production RAG system for a quarter — watch its failures, read its worst answers — and you discover the truth its architects learn one incident at a time. The system does not fail because it retrieved too little. It fails because it retrieved almost right: the policy from last year, the similar-but-different customer, the paragraph that shares every keyword with the answer and none of its truth. Recall is cheap. What’s scarce, in retrieval as in memory, is the discipline to let things go.

An embedding is a lossy vow

Start at the bottom of the stack. An embedding model takes a paragraph — its qualifications, its tone, its dated context — and vows to represent it in a thousand numbers. That vow is lossy by design. Nuance is precisely what gets averaged away, which is why two sentences that disagree completely can sit side by side in vector space, nodding at each other’s topics.

This isn’t a flaw to be fixed by a bigger embedding. It’s the function. An embedding is useful because it forgets — because it collapses surface variety into semantic neighborhood. The mistake is asking the forgetting machine to also be the remembering machine: to let cosine similarity, a measure of topical kinship, stand in for relevance, which is a judgment about what matters now, for this question. Every serious pipeline re-learns this and reaches for the same corrections — rerankers, hybrid search, metadata filters — each one a way of saying: similarity proposes, judgment disposes.

Curate the corpus like a garden, not a warehouse

The higher-leverage forgetting happens before any query arrives. Teams pour every document they own into the index — old runbooks, superseded specs, the wiki page titled “DRAFT do not use” — on the theory that more coverage means better answers. What it actually means is that every query now competes with the corpus’s entire past. Stale truth is the worst adversary in retrieval, because it was written with the same confidence as fresh truth, by the same authors, in the same style. No reranker can smell expiration.

The fix is editorial, not architectural: deletion policies, freshness fields, a single owned source for each fact, and the willingness to keep whole categories of document out of the index because their presence costs more than their absence. The Japanese garden’s principle applies without translation — what you remove is as much of the design as what you plant. Nobody praises a garden for containing every plant the gardener ever owned.

The context window is the final gate

And then, at answer time, the last act of exclusion: of everything retrieved, what enters the prompt? Here the additive instinct makes its final stand — surely more chunks are safer? — and here it does its final damage. Models anchor on what they’re given. Feed a model six passages where one is right and five are plausible, and you have not given it context; you have given it a multiple-choice exam written by an adversary. The strongest RAG systems ship fewer, better tokens: one authoritative passage beats five suggestive ones, and no passage — an honest “nothing relevant found” — beats a seductive near-miss every time.

There is a reason human memory works like this too. Forgetting, the neuroscientists keep telling us, is not storage failure but active maintenance — the brain pruning what would otherwise interfere. A mind that retained everything would drown in its own relevance calculations; what we call wisdom is substantially the skill of not-retrieving.

We named these systems for the half of the job that computers were already good at. Retrieval was never the hard part. The art — in databases as in minds — is subtractive: index less, surface less, and trust that an answer built from three true sentences will always beat one assembled from thirty familiar ones.

The koan you retrieve is never the koan you stored.