What chunking means
The term comes from retrieval systems, not from search engines. When a system has to answer with a specific quotation, storing the whole document is useless to it, because it would have to return thousands of words to support a single sentence. So it splits the document before storing it. Each resulting piece is a chunk, and that chunk is the smallest unit the system can retrieve and hand to the model.
Three things that tend to get mixed up belong apart. A paragraph is an editorial decision of yours. An HTML section is a layout decision. A chunk is a decision made by the system that ingests your document, taken with parameters you neither set nor see. Publishing three-line paragraphs obliges nobody to use those limits as chunk boundaries.
The second distinction concerns ownership, and it organises everything else. If you build an internal search or an assistant on your documentation, the chunking is yours: you choose the method, the size and the overlap, and you answer for the quality of the result. If the question is instead how to appear in a ChatGPT answer or in Google Search, the splitting happens inside somebody else's closed pipeline. The difference is not academic, because it determines what you can genuinely optimise and what you can only assume.
How a text is split
There are four families of method. The first cuts by fixed length, counted in tokens or characters, and is the simplest and the blindest, because the boundary falls where it falls. The second adds overlap: it repeats the end of one chunk at the start of the next so that a sentence cut in half still appears intact somewhere. The third cuts by structure, using headings, subsections or table rows as a natural boundary. The fourth cuts by semantic similarity, measuring where the topic shifts and splitting exactly there.
The concrete values depend on the system. Google's Vertex AI RAG engine starts at 1,024 tokens per chunk with 256 tokens of overlap, but that is one product's default and not a general recommendation. The documentation itself describes the trade-off without settling it: a small chunk produces more precise representations, and a large one produces more general representations that may lose details.
The characteristic failure appears when the context is left on the other side of the boundary. Anthropic illustrates it with a chunk stating that revenue grew by 3 % over the previous quarter, without naming the company or the period. Retrieved on its own, that piece is good for nothing, because it contains none of the words anyone would ask about. The remedy they proposed was to prepend to each chunk a sentence placing it inside its document before indexing. In their own evaluation this lowered retrieval failures from 5.7 % to 3.7 %; combined with lexical search it fell to 2.9 %, and with an added reranking stage to 1.9 %.
Why it matters
The decision hanging on this is a budget decision. If you run your own retrieval, chunk size and chunk boundaries are the cheapest lever you have on answer quality, ahead of switching models. It is worth measuring with your documents and your real questions before touching anything else.
If what you want is to be cited in search engines and assistants, the honest answer is less comfortable. Google documents a system called passage ranking, which identifies specific sections of a page in order to judge its relevance better, and presented it as an improvement affecting 7 % of queries. What that system does is documented. What boundaries it works with is not, and nowhere does Google state that the length of your paragraphs influences them.
For the advice derived from all this there is a direct source, and it says the opposite of the advice. Google states in its guidance on optimising for generative features that there is no requirement to break content into tiny pieces for AI to understand it, and that its systems handle multiple topics on one page. The budget line for rewriting an entire site into micro-paragraphs therefore has no documentary backing. What survives scrutiny is more modest and is good editing anyway: making each section understandable on its own.
Frequently asked
What is the ideal chunk size?
There is no general one. The Vertex AI RAG engine starts at 1,024 tokens with 256 tokens of overlap, but that is one product's default, not a universal recommendation. The figures circulating in SEO articles come from specific experiments, with a specific model and a specific task. Measure with your own documents.
Does Google split my page into chunks?
Google documents a passage ranking system that identifies specific sections of a page in order to judge their relevance, and announced it as an improvement to 7 % of queries. It does not publish how it sets those boundaries, nor does it call them chunks. The shared intuition exists; the internal mechanism is undocumented.
Does writing shorter paragraphs help me appear in AI answers?
No source supports it, and one contradicts it. Google states that content does not need to be broken into tiny pieces and that its systems understand multiple topics on a single page. Write short paragraphs if they improve readability, not as a visibility tactic.
What is overlap between chunks for?
It repeats the end of one chunk at the start of the next, so that a sentence cut by the boundary appears intact at least once. It costs index space and produces some duplication in the results. In exchange it prevents the most annoying failure, which is losing precisely the definition you were after.
What happens if the context stays in another chunk?
The chunk becomes unretrievable in practice, because it does not contain the words anyone would ask about. Anthropic showed this with a text reporting growth of 3 % without naming a company or a period. Prepending a context sentence to each chunk cut their retrieval failures from 5.7 % to 3.7 %.