Right topic plus unrelated paragraph is the dilution signature of oversized chunks. Missing co-located facts is the opposite failure.
Imagine you ask a librarian for a book chapter on cats. Three things can go wrong. First, the librarian hands you a single page about cats but the next sentence is about somebody's grandmother, because the page got cut in the middle of the cat chapter. That is chunks too small. Second, the librarian hands you the cat chapter plus the dog chapter plus a recipe for soup, because all three were stapled together. The cat content is in there but you have to read past a lot of noise to find it. That is chunks too large. Third, the librarian gives you five copies of the same page. That is a problem with the librarian's index, not with the page size. The question asks for the second one.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Chunk size is the most-tuned knob in RAG pipelines because it sits at the boundary between two failure modes that look superficially similar but have opposite fixes. Too-large chunks dilute. Too-small chunks split. Both produce 'retrieval is broken' complaints from end users, but the right intervention is different.
This MCQ tests whether the candidate can read failure shapes and distinguish them. The dilution shape, right topic plus unrelated material in the same chunk, is the signature of oversized chunks. The split shape, co-located facts missing because they straddle a chunk boundary, is the signature of undersized chunks. The other two options in the question (near-duplicates, reranker confusion) are different failure modes entirely; they live on the diversity and reranker axes, not on the chunk-size axis.
The production lesson buried in the question is that diagnosis comes from reading chunk contents, not from staring at retrieval scores. A 30-minute pass through a failing eval set's top-3 chunks per query usually surfaces the dominant failure mode, and the right fix follows. Teams that tune chunk size based on intuition without inspecting chunks tend to overshoot in one direction and then overshoot back.
The two chunk-size failures and how they look
Too-large chunks produce dilution. Each retrieved chunk contains the right paragraph plus extra material that happened to be nearby in the source document. The embedding model represents the chunk as a single vector that averages all the topics in it; a query about topic A retrieves the chunk because topic A is in there, but the chunk also delivers topics B and C.
The production effect is a context block that holds too much noise per slot. If your budget allows for 5 retrieved chunks and each chunk is 1,200 tokens with only 400 useful tokens, the model is reading 4,000 useful tokens disguised as 6,000 tokens of input. The downstream consequence is lost-in-the-middle: the useful content is buried in the middle of long chunks, exactly where attention is weakest.
Too-small chunks produce split facts. A multi-sentence fact,'the XYZ standard, defined in RFC 8259 section 4.3, requires keys to be unique within a single object', gets cut by aggressive chunking. The chunk with 'XYZ standard, defined in RFC 8259' matches the query, the chunk with 'requires keys to be unique within a single object' does not match (because it lacks the keywords from the query), and the retrieved evidence is incomplete.
The production effect is the model 'almost' having the answer. Users see responses that are confidently wrong or that hedge with 'I don't have specific information about X' when the source document literally contains X, just split across two chunks the retriever did not both fetch.
The two failures look different in retrieved-chunk inspection. Dilution: 'the chunks I retrieved have the right topic but they are long and mostly noise.' Split: 'I keep getting one half of an answer.' Read the chunks; the diagnosis is usually obvious.
Situations where this technique stops working.
2–4 min · Everything important, quickly.
| Symptom in retrieved chunks | Likely cause | Fix |
|---|---|---|
| On-topic but with unrelated material attached | Chunks too large | Reduce chunk size; semantic-boundary chunking |
| Co-located facts missing across chunks | Chunks too small | Increase chunk size; add overlap |
| Near-duplicate chunks in top-k | Diversity gap; corpus redundancy | Enable MMR; deduplicate at index time |
| Reranker cannot separate two chunks | Reranker capacity | Upgrade reranker (Cohere v3, Voyage 2) |
| Answer absent from retrieved chunks entirely | Retrieval/embedding mismatch | Try hybrid search; better embeddings |
Real products, models, and research that use this idea.
- LlamaIndex's SemanticSplitterNodeParser chunks at semantic boundaries rather than fixed token counts, reducing the too-small failure mode in 2026 RAG stacks.
- LangChain's RecursiveCharacterTextSplitter is the default chunker for most LangChain-based agents; teams typically tune chunk size 300-500 with 50-100 overlap.
What an interviewer would ask next. Try answering before peeking at the approach.
QHow does chunk overlap interact with rerank?
Overlap creates near-duplicate candidates that rerank should consolidate. A strong reranker handles this; a weak one ranks both halves of an overlap pair high and wastes a slot. If overlap is creating duplicate-looking top-k, the reranker is the lever, not chunk size.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Picking option 0 (missing co-located facts) because it 'sounds like a retrieval problem.' It is the opposite failure mode, chunks too small to span the fact. Read the diagnostic shape, not the vibe.
60 second bullets to scan on the way to the call.
The dilution signature that points to chunks being too large
The split-fact signature that points to chunks being too small
Primary sources. Browse if you want the original framing.
Same topic, related formats. Practice these next.