Manticore Search's Auto-Chunking Boosts Recall from 55% to 83% for Long Documents

Better Vector Search for Long Documents: Chunking Inside Manticore Search

Manticore Search's Auto-Chunking Boosts Recall from 55% to 83% for Long Documents

Manticore Search now supports automatic chunking for vector search, eliminating the need for external pipelines. With five strategies—truncate, mean, fixed, recursive, and sentence—you can embed long documents without losing content beyond the model's token limit. On a 189-page manual, sentence chunking improved recall@5 from 55.1% to 83.3% and MRR from 0.44 to 0.70, at the cost of 2.5x RAM and 4x ingest time. Queries remain unchunked.

The model read the first 380 words and threw away the other 3,600. Nothing in the document past that point can ever be retrieved, and nothing anywhere told you.
  1. entrope

    A lot of the article focuses on problems induced by a 512-token input limit. For example, one needs a lot more chunks with such a small input, especially with overlap. I realize that some embedding models do have input contexts that small, but 8K and 32K are fairly widely supported and reduce chunking-related problems.

    For languages like English, there's also usually a lot of redundancy within a text, so 512 tokens might not give a very clear indication of the context. Lots of documents have similar introductions (like "#include <foo.h>\n") that make short contexts and truncation particularly harmful.

    Also, "Nothing in the document past that point can ever be retrieved, and nothing anywhere told you." This is user-hostile behavior, even if they didn't want to admit to users that the auto-embedding support was poor.

    Finally, the paragraph later on about truncation being "what you already have" reads like Claude talking to the developer, not like a vendor talking to users. But sure, maybe this is a good default for a database searching page titles, chat logs and Xeets?

  2. hn45e7pbij

    Bigger context windows help but they don't remove the need to chunk. Embedding 8K tokens into one vector smears everything, retrieval quality drops even though nothing got truncated.

  3. Chance-Device

    Pretty interesting, I’m sure it will be useful for anyone who is rolling their own RAG.

More from this day

2026-09-17