Zenaique

Pick the failure pattern that points to chunk size being too large rather than too small

MCQ·Medium·4.0 · 0·~1 min·Asked atAmdDeepseekPatronus
Attempt it
TL;DR

Right topic plus unrelated paragraph is the dilution signature of oversized chunks. Missing co-located facts is the opposite failure.

Memory aid
Sign in to see the mnemonic that makes this stick.
Easy to grasp

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.

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.

Why options 2 and 3 are not chunk-size problems
2026 starting points and per-corpus tuning
The diagnostic playbook
Sign in to unlock the full deep dive.

Situations where this technique stops working.

Sign in to see when this approach fails.

2–4 min · Everything important, quickly.

Sign in to see the quick scan of the deep dive.
Symptom in retrieved chunksLikely causeFix
On-topic but with unrelated material attachedChunks too largeReduce chunk size; semantic-boundary chunking
Co-located facts missing across chunksChunks too smallIncrease chunk size; add overlap
Near-duplicate chunks in top-kDiversity gap; corpus redundancyEnable MMR; deduplicate at index time
Reranker cannot separate two chunksReranker capacityUpgrade reranker (Cohere v3, Voyage 2)
Answer absent from retrieved chunks entirelyRetrieval/embedding mismatchTry 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.
Sign in to see more production examples.

What an interviewer would ask next. Try answering before peeking at the approach.

QHow does chunk overlap interact with rerank?
A

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.

2 more follow-ups an interviewer would ask next. Sign in to reveal them.

Red flags & common mistakes

The phrases that signal junior thinking. Click to expand.

Most common mistake

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.

Sign in to see all red flags and common mistakes.

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

Sign in to unlock the revision sheet.

Primary sources. Browse if you want the original framing.

Similar questions

Same topic, related formats. Practice these next.

4 curated
Next question
Pick the most effective intervention when an agent's context grows by 8KB every iteration
MCQ·Medium