- In short
- Retrieval precision and recall should be tracked as first-class system metrics, not inferred only from end-to-end output quality. Retrieval quality drifts when the index falls out of sync with the underlying documents, or when query patterns shift over time. A drop in end-to-end answer quality with stable retrieval metrics points to a generation-layer problem, not a retrieval-layer one, which is why the two must be measured separately.
Measure retrieval directly, not by inference
In a RAG system, retrieval quality and generation quality are different things, but a team that only watches the final answer cannot tell them apart. The exam's applied point is to track retrieval precision and recall as first-class system metrics, measured directly at the retrieval layer, rather than inferring retrieval health from end-to-end output quality alone. Precision (are the retrieved chunks relevant) and recall (did retrieval find the relevant chunks that exist) are properties of the retrieval stage, and measuring them directly is what lets you see a retrieval problem as a retrieval problem instead of a vague drop in answers.
This is the retrieval-layer application of the aggregate-versus-decomposition discipline: a single end-to-end quality number is an aggregate that hides which layer moved. Separate retrieval metrics decompose it.
- Monitoring retrieval quality
- Tracking retrieval precision and recall as first-class system metrics, measured at the retrieval layer rather than inferred from end-to-end output quality, so retrieval drift can be detected directly and a fault can be localised to the retrieval or the generation layer.
Retrieval quality drifts, so it needs ongoing measurement
Retrieval is not set-and-forget. Its quality drifts for two main reasons. The index can fall out of sync with the underlying documents: as source documents are added, removed, or changed without a matching reindex, the index increasingly describes a corpus that no longer exists, and retrieval accuracy degrades. And query patterns can shift over time: users start asking different kinds of questions than the retrieval configuration was tuned for, so the same index serves a changed workload less well. Both are gradual, which means they are the drift kind of change that needs ongoing measurement to catch, not a one-time validation at launch.
Because drift is continuous, retrieval metrics have to be watched over time, not checked once and assumed stable. A precision or recall that was good at launch can quietly erode as the corpus grows and queries evolve, and only sustained measurement reveals it.
Separating retrieval faults from generation faults
The most valuable payoff of measuring retrieval separately is fault localisation. When end-to-end answer quality drops, the question is which layer caused it, and separate retrieval metrics answer it. If retrieval precision and recall also dropped, the fault is in retrieval, adjust chunking, indexing, or method. But if end-to-end quality dropped while retrieval metrics stayed stable, retrieval is still fetching the right chunks, so the fault is downstream in the generation layer, a prompt change, a model update, a generation-side regression. Without separate retrieval metrics you cannot make that call and end up guessing or fixing the wrong layer.
This is the same attribute-before-fixing logic as change attribution: a moved end-to-end metric is not actionable until you know which layer moved. Stable retrieval plus dropped answers is a specific, informative signal that points at generation, and you only get that signal if retrieval is measured on its own.
What the exam trips candidates on
Two traps. The first is monitoring only final answer quality and missing a retrieval regression that a downstream generation step happens to be compensating for, so a real retrieval problem hides behind an acceptable answer. The second is assuming retrieval metrics, once set up, do not need to be revisited as the document corpus grows, ignoring that retrieval quality drifts. The credited answer tracks retrieval precision and recall as ongoing first-class metrics and uses them to localise faults.
Worked example
A RAG system's end-to-end answer-quality score drops noticeably over a month. The team monitors only that end-to-end score. One engineer wants to re-tune the chunking; another wants to revise the generation prompt. With no separate retrieval metrics, how should the team proceed, and what should they have had in place?
The team is stuck precisely because they lack the metric that would tell them which layer moved. A drop in the end-to-end score could come from retrieval (the index drifting out of sync as documents changed, or a query-pattern shift degrading recall) or from generation (a prompt or model change producing worse answers over the same retrieved chunks). Both engineers are proposing a fix to a different layer, and with only the end-to-end number, there is no evidence to choose between them, re-tuning chunking or revising the prompt is a coin flip that may fix the wrong layer.
What they should have had is retrieval precision and recall tracked as first-class metrics over time. With those, the diagnosis is immediate: if retrieval precision or recall also dropped over the month, the fault is in retrieval, so the chunking and indexing re-tune is the right move, and the likely driver is index-document drift or a query shift. If instead retrieval metrics stayed stable while the end-to-end score fell, retrieval is still fetching the right chunks and the fault is in the generation layer, so the prompt revision is correct. So the immediate step is to instrument retrieval precision and recall now and read them against the drop; the standing lesson is that these should have been first-class, continuously monitored metrics from the start, both to catch retrieval drift as the corpus grew and to localise exactly this kind of fault without guessing.
Common misreadings to avoid
Misconception
Monitoring the end-to-end answer quality is enough to know whether retrieval is healthy.
What's actually true
Misconception
Once retrieval metrics are set up and look good, they do not need revisiting as the corpus grows.
What's actually true
How this shows up on the exam
Expect a RAG quality drop with only end-to-end monitoring, and a question about how to localise the cause. The reliable reading is to track retrieval precision and recall as first-class metrics, and that stable retrieval with dropped answers points to the generation layer. This knowledge point relates to live-state vs static retrieval, applies the decomposition logic of aggregate vs per-request metrics and the attribution logic of change attribution, and feeds the scenario-matching capstone.
A RAG system's end-to-end quality falls over a month, but the team monitors only that end-to-end score. What should they do to localise the fault?
People also ask
How do you monitor retrieval quality?
What makes retrieval quality drift?
If answers drop but retrieval is stable, where is the problem?
Watch and learn
Official Anthropic Academy lessons first, then hand-picked walkthroughs. Videos load only when you press play.
No videos curated for this concept yet
We are still curating the best official and community videos for this topic.
Official prep for this domain
Anthropic's own free prep module for this part of the syllabus, on the official prep course. Free with an Anthropic Academy sign-in.
References & primary sources
Master this concept with Archie
Practice it inside an adaptive study session. Archie, your Socratic AI tutor, tracks your mastery with Bayesian Knowledge Tracing and schedules the perfect next review.