Skip to content
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

Merged
merged 15 commits into from
Mar 14, 2025

Conversation

lindseymoore
Copy link
Collaborator

@lindseymoore lindseymoore commented Mar 11, 2025

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

  • Is this free of any warnings or errors in the RST?
  • Did you run a spell-check?
  • Did you run a grammar-check?
  • Are all the links working?
  • Are the facets and meta keywords accurate?

Copy link

netlify bot commented Mar 11, 2025

Deploy Preview for docs-golang ready!

Name Link
🔨 Latest commit 4d1916b
🔍 Latest deploy log https://app.netlify.com/sites/docs-golang/deploys/67d49fe048138900083f080c
😎 Deploy Preview https://deploy-preview-473--docs-golang.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Comment on lines 37 to 41
// Converts the BSON binary to a BSON binary vector
queryVector, err := bson.NewVectorFromBinary(vectorFloatBinary)
if err != nil {
log.Fatal(err)
}
Copy link
Collaborator

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},
...

Copy link
Collaborator Author

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.

Copy link
Collaborator

@rustagir rustagir left a 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

@jtazin
Copy link
Collaborator

jtazin commented Mar 12, 2025

Should we make the change referenced here in this PR?
#462 (comment)

@lindseymoore
Copy link
Collaborator Author

@jtazin Yes, will remove that TODO in this PR one the indexes page PR is merged.

@lindseymoore lindseymoore requested a review from rustagir March 12, 2025 23:54
Copy link
Collaborator

@rustagir rustagir left a 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)
Copy link
Collaborator

@qingyang-hu qingyang-hu Mar 13, 2025

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.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

Copy link
Collaborator

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().

@lindseymoore lindseymoore merged commit 0eca024 into mongodb:master Mar 14, 2025
4 of 5 checks passed
Copy link

The backport to v2.1 failed:

The process '/usr/bin/git' failed with exit code 1

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 base branch is v2.1 and the compare/head branch is backport-473-to-v2.1.

lindseymoore added a commit to lindseymoore/docs-golang that referenced this pull request Mar 14, 2025
* 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants