-
Notifications
You must be signed in to change notification settings - Fork 16
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
[Vectorize] Remove $vectorize field in the document #532
Comments
"remove" means just set "$vectorize" field as empty string, or delete "$vectorize" field in the whole document? |
If the existing document in the DB is, and we get an update clause as {"$set" : {"$vector" : [0.11,0.11,0.11]}} where update is directly to $vector field. This should remove $vectorize field when $vector field is updated. Post update document should look as: |
This is a good suggestion, makes a lot of sense. |
If an update come in for $vector field directly, remove $vectorize field in the document if it exist.
@vkarpov15 FYI
The text was updated successfully, but these errors were encountered: