-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOCSP-47141 Atlas Vector Search and Binary Vector Support #473
Conversation
✅ Deploy Preview for docs-golang ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
// Converts the BSON binary to a BSON binary vector | ||
queryVector, err := bson.NewVectorFromBinary(vectorFloatBinary) | ||
if err != nil { | ||
log.Fatal(err) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it is not for demonstration of conversion, we don't need to convert bson.Binary
back to bson.Vector
as queryVector
is an equivalent of vectorFloat
. And vectorFloatBinary
can be used directly underneath like:
...
{"queryVector", vectorFloatBinary},
...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a separate example for deserialization.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work on this page! Added some comments to add more detail in some places
Should we make the change referenced here in this PR? |
@jtazin Yes, will remove that TODO in this PR one the indexes page PR is merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall looks good once you add in the explanation that Qingyang provided!
} | ||
|
||
for _, result := range results { | ||
fmt.Printf("Title: %v \nPlot: %v \nScore: %v \n\n", result.Title, result.Plot, result.Score) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to add Score
in the ProjectedMovieResult
struct and projectStage
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I apologize for the back and forth.
Do we also need to update:
- Returns 5 documents with the specified ``plot`` and ``title`` fields |
Otherwise, we can just remove the
Score
in the fmt.Printf()
.
aed1a57
to
deb91d4
Compare
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-v2.1 v2.1
# Navigate to the new working tree
cd .worktrees/backport-v2.1
# Create a new branch
git switch --create backport-473-to-v2.1
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 0eca024bd3a0bc1c5588839d8d2f8eaf787ec273
# Push it to GitHub
git push --set-upstream origin backport-473-to-v2.1
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-v2.1 Then, create a pull request where the |
* DOCSP-47141 Atlas Vector Search and Binary Vector Support * add better comments * move page location * api docs * edits * links and fix bson vector code ex * RR comments * edits * edit * numcandidates edit * RR edits * QH comments * remove TODO * missing score text * update whats new and indexes page (cherry picked from commit 0eca024)
Pull Request Info
PR Reviewing Guidelines
JIRA - https://jira.mongodb.org/browse/DOCSP-47141
Staging - https://deploy-preview-473--docs-golang.netlify.app/fundamentals/atlas-vector-search/
Self-Review Checklist