You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Faiss engine, when no filtering clause is applied, the search initially considers all available documents in a segment, and deleted documents are filtered out afterward.
This approach affects both recall and latency when there are many deleted documents. For ANN search, recall decreases because the results may include deleted documents among the top k. For exact search, latency increases due to the additional computation of distances for deleted documents.
This applies only with Faiss engine. With Lucene engine the live document information is already being used during search.
The text was updated successfully, but these errors were encountered:
In the Faiss engine, when no filtering clause is applied, the search initially considers all available documents in a segment, and deleted documents are filtered out afterward.
This approach affects both recall and latency when there are many deleted documents. For ANN search, recall decreases because the results may include deleted documents among the top k. For exact search, latency increases due to the additional computation of distances for deleted documents.
This applies only with Faiss engine. With Lucene engine the live document information is already being used during search.
The text was updated successfully, but these errors were encountered: