RAG Retrieval Methods
Framework of four retrieval patterns for AI agents: (1) database filters for structured rows when the answer lives in a small subset, (2) SQL queries for totals, averages, rankings, and trends, (3) full-context stuffing when order and completeness matter and the document fits the context window, and (4) chunk-based vector search for needle-in-haystack semantic lookup. Chosen by asking what method a human would use on the same question. Counters the default-to-vectors habit.
Google Cloud's Vector Search 2.0 video adds a managed hybrid-search implementation: developers define fields to embed, load records with empty vector fields, and let the service generate embeddings and combine semantic and keyword results into one ranked list. SQL-like filters remain available for price, category, and other structured business rules [src-216].
Related entities
Source references
- [src-006] Nate Herk cluster — Nate Herk — RAG and data ingestion cluster (5 videos)
– Videos referenced: kOKavHnlPik
- [src-216] Google Cloud Tech – "Give your app search superpowers: Agent Retrieval (Vector Search 2.0)" (2026-07-16)
Keep reading from this thread
From 477 indexed pages and articles.
- Wiki concept LLM Wiki vs Semantic RAG A comparison framework for choosing between two knowledge-base architectures: the Karpathy LLM Wiki Pattern (markdown + index + LLM reader) and Related by retrieval
- Wiki concept Retrieval-Augmented Generation (RAG) The mainstream pattern for answering questions over a document collection: index the documents as vector embeddings, retrieve the most similar chunks at query Related by retrieval
- Insight Recommendation Systems in Production How recommendation systems become production decisioning systems through signals, ranking, constraints, feedback loops, and experimentation Readers have engaged with this next