“Hybrid” is not one fixed method. Qualify what you are combining: full-text (BM25) plus dense, sparse plus dense, or a keyword filter plus dense. This page uses those qualifiers throughout.
Combine signals
Pinecone gives you three ways to combine a keyword signal with a dense signal. Metadata filtering is a separate lever that composes with all of them: it narrows the candidate pool before ranking, so an out-of-scope document cannot compete for a result slot.
RRF is a fusion method, not a synonym for hybrid search. It is one way to merge ranked lists, while “hybrid search” is the broader approach of combining signals. See Reciprocal rank fusion.
Choose an approach
For a new document or text workload, use the Documents API. Declare adense_vector field and one or more full-text string fields in one schema, then either filter a dense search with a text-match filter or run a keyword search and a dense search and fuse them with RRF. See Full-text search and the multi-signal schema example.
For an existing vector or records workload, use the Vectors API.
Hybrid search on the Vectors API
The Vectors API supports two patterns:- Use a single index for dense and sparse vectors: Store both vectors per record and set the dense/sparse balance client-side by scaling the query vectors before the request (an
alphaweighting). This is the simplest single-request architecture, though the unbounded sparse scores need normalizing. - Use separate indexes for dense and sparse vectors: Store dense and sparse in two indexes linked by ID, query each, and merge the results client-side. This is more flexible, but there is more to manage.