Read original
hf-paperspapers88

BM25 Wins at Scale: A Scaling Study of Retrieval-Augmented Generation Paradigms

AI Summary

This paper conducts a controlled scaling study of retrieval-augmented generation across 28 strictly nested corpus tiers spanning roughly 450x in size. It holds the questions, relevant documents, adversarial documents, reader model, and judging protocol fixed while comparing lexical, dense, graph-based, and agentic retrieval. File-System Agent performs best at the smallest shared tiers but uses 39x more query tokens at the bedrock and degrades as the search space grows. Around 10 million corpus tokens, BM25 overtakes it and leads at all larger shared tiers, approaching a 20-point margin at full scale. Dense retrieval is cheaper but less accurate, while graph RAG faces construction limits.

Why it's worth reading

As RAG systems move from small prototypes to large-corpus deployment, this controlled comparison provides concrete evidence for choosing retrievers, budgeting token costs, and deciding where agentic reasoning belongs.

Deep Read

1. What happened

Original facts: The paper presents a controlled scaling study of RAG across 28 strictly nested corpus tiers spanning roughly 450x in size. It compares lexical retrieval, dense retrieval, graph-based indexing, and agentic search while holding the questions, relevant documents, adversarial documents, reader model, and judging protocol fixed.

2. Core technology

Original facts: The study includes BM25, dense retrieval, graph-based RAG, and a File-System Agent. It measures accuracy, construction tokens, query tokens, and latency. Analysis: The central methodological choice is to vary corpus size while keeping the evaluation setting stable, enabling performance-cost curves rather than a single-size leaderboard comparison.

3. Key evidence and numbers

Original facts: File-System Agent leads at the smallest shared tiers, but its sequential exploration uses 39 times more query tokens at the bedrock and becomes less effective as the search space expands. Around 10 million corpus tokens, BM25 overtakes it and leads at every larger shared tier, with a margin approaching 20 points at full scale. The abstract also states that BM25 anchors the low-cost Pareto frontier, dense retrieval is efficient but less accurate, and graph RAG hits construction barriers before deployment scale.

4. Why it matters

Analysis: The findings challenge the assumption that semantic retrieval or agentic reasoning automatically becomes preferable as RAG systems scale. Larger search spaces may favor global candidate ranking before expensive reasoning. Original facts: The paper’s stated overall conclusion is that lexical retrieval is the strongest scalable default, while agentic reasoning works better after ranked discovery than as a replacement for it.

5. Practical impact

Analysis: Engineering teams can use BM25 as a large-corpus baseline and first-stage retriever, then apply reranking, dense retrieval, or agentic planning over a smaller candidate set. Evaluation should track accuracy, construction cost, query tokens, and latency together. Graph-based RAG deployments should separately budget index construction and update costs before launch.

6. Limitations and uncertainty

Original facts: The abstract specifies one reader model and one judging protocol, but does not provide the exact model, datasets, question count, hardware, confidence intervals, or complete per-method results. Unverified inference: Generalization to multilingual retrieval, highly semantic matching, rapidly changing corpora, different LLM readers, or different document structures remains unconfirmed. BM25’s advantage may also depend on the fixed question and document setup, so it should not be treated as a universal production law without the full paper and replication.

7. Original sources

Tags

RAGBM25检索规模化评测Agentic SearchDense RetrievalGraph RAG