Docs Menu
Docs Home
/
Atlas
/

How to Perform Hybrid Search

A hybrid search is an aggregation of different search methods or search queries for the same or similar query criteria. This technique utilizes algorithms to rank results and return unified results from the different methods of search. You can use the $rankFusion to perform a hybrid search.

Reciprocal rank fusion is a technique to combine results from different search methods into a single result set by performing the following actions:

  1. Calculate the reciprocal rank of the documents in the results.

    For each ranked document in each search result, first add the rank (r) of the document with a constant number, 60, to smooth the score (rank_constant), and then divide 1 by the sum of r and rank_constant for the reciprocal rank of the document in the results. You can't set the value of rank_constant and it defaults to 60.

    reciprocal_rank = 1 / ( r + rank_constant )

    For each method of search, apply different weights (w) to give more importance to that method of search. For each document, the weighted reciprocal rank is calculated by multiplying the weight by the reciprocal rank of the document.

    weighted_reciprocal_rank = w x reciprocal_rank
  2. Combine the rank-derived and weighted scores of the documents in the results.

    For each document across all search results, add the calculated reciprocal ranks for a single score for the document.

  3. Sort the results by the combined score of the documents in the results.

    Sort the documents in the results based on the combined score across the results for a single, combined ranked list of documents in the results.

You can leverage Atlas Vector Search to perform several types of hybrid search. Specifically, Atlas Vector Search supports the following use cases:

  • Full-text and vector search in a single query: You can combine results from different search methods, such as a semantic and a full-text search. You can use the $vectorSearch for the semantic search and the $search for the full-text search results and combine the results by using the reciprocal rank fusion technique. To learn more, see the Perform Hybrid Search with Atlas Vector Search and Atlas Search tutorial, which demonstrates how to perform a semantic search and full-text search against the sample_mflix.embedded_movies namespace and retrieve combined results by using reciprocal rank fusion.

  • Multiple vector search queries in a single query: The MongoDB $rankFusion pipeline supports multiple sub-pipelines that contain vector search queries executed against the same collection and combining their results using the reciprocal rank fusion technique. The How to Combine Multiple $vectorSearch Queries tutorial demonstrates the following types of vector search:

    • Perform a comprehensive search of your dataset for semantically similar terms in the same query.

    • Search multiple fields in your dataset to determine which fields return the best results for the query.

    • Search using embeddings from different embedding models to determine the semantic interpretation differences between the different models.

When using the $rankFusion pipeline stage for hybrid search, consider the following.

If you want to capture false negatives that one search methodology couldn't catch, having disjoint results from individual sub-pipelines might be acceptable. When you have disjoint results, most or all of the results might appear to be returned from one of the pipelines and not the other. However, if you want all the sub-pipelines to return similar results, try increasing the number of results per sub-pipeline.

We recommend weighing lexical and vector queries on a per-query basis rather than having static weights for all queries to improve the relevance of the results for each query. This also improves computation resource utilization by allocating resources on the query that needs it most.

You can combine an arbitrary number of sub-pipelines together in the $rankFusion stage, but they must all execute against the same collection. You can't use the $rankFusion stage to search across collections. Use the $unionWith stage with $vectorSearch for cross-collection search.

We recommend using $match, $sort, and so on in your pipeline to boost on specific fields within your collection without requiring a search pipeline.

You can use the $geoNear and the near operator inside $search for a geographic location search within the $rankFusion stage. However, the $geoNear and the near operator use different coordinate reference frames. Therefore, the result ordinals and scores might not be identical.

We recommend setting limits for the number of results to return for each sub-pipeline.

The following limitations apply to hybrid search using $rankFusion:

  • $rankFusion is only supported on MongoDB 8.1+.

  • $rankFusion sub-pipeline can contain only the following stages in the sub-pipelines:

  • $rankFusion preserves a traceable link back to the original input document for each sub-pipeline. Therefore, it doesn't support the following:

  • $rankFusion sub-pipelines run serially, not in parallel.

  • $rankFusion doesn't support pagination.

To try these tutorials, you must have the following:

  • An Atlas cluster with MongoDB version v8.1.0 or later.

  • The sample_mflix database loaded into your Atlas cluster.

  • mongosh to try the queries on your Atlas cluster.

    Note

    You can also try these hybrid search use cases with local Atlas deployments that you create with the Atlas CLI. To learn more, see Create a Local Atlas Deployment.

Back

Explain Query Results

On this page