PSMDB-2163 vector search#1147
Draft
rasika-chivate wants to merge 4 commits into
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Percona Server for MongoDB (PSMDB) currently lacks integrated support for advanced search capabilities such as Vector Search and Full-text Search, which are becoming increasingly critical for users analyzing large-scale, semi-structured, or unstructured datasets. MongoDB Community Edition will introduce these features natively, including a new component (mongot - aka Search Node) that wraps Lucene to deliver search indexing and query capabilities. In the current “coupled” search architecture, one mongot runs alongside each mongod or mongos. Each mongod/
mongosand mongot pair is on the same physical box/server and communicates via localhost. mongot replicates the data from its collocated mongod node using change streams and builds Lucene indexes on that replicated data. mongot is guaranteed to be eventually consistent with mongod.Without this support in PSMDB, our users are limited in how they query text data or leverage machine learning embeddings for vector similarity. This leads them to rely on external tools or migrate to Atlas or other vendors that natively support these features.
For more details, see https://perconadev.atlassian.net/browse/PSMDB-1725