forked from mongoosastic/mongoosastic
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Hydrate check if _id are strings or not #136
Open
streetlib
wants to merge
189
commits into
taterbase:master
Choose a base branch
from
streetlib:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
More dynamic version info
Prior, only geo_point were kept in the mapping.
In my tests, the mapping format returned by the getMapping function is not the same between 0.90.11 and 1.0
Enveloppe corners were in wrong order resulting in a bad test.
Provided fix for etting first level `hits` field of search results when used hydrate
…hydrate-hits Cubuzoa/feature/hydrate hits
Nlko geo shape
remove river code
…ulk-and-array-indexing Albanm/feature/bulk and array indexing
added fuzzy search test
…pdate-empty fix(postSave): fix findOneAndUpdate if document doesn't exist
added support for suggesters
removed gulp dependency. moved to ESLint instead of jshint/jscs
added AUTHORS file
…eralls updated yml config for travisci and coveralls
Recognizes an es_type of nested with es_fields and maps it
Check if they are strings or ObjectIds
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.
I found there could be a problem if you don't index the MongoDB
_id
field and you try to usehydrate
option.Basically the problem is the
_id
comes as string if you doesn't index it and so this queryquery = model.find({_id: {$in: ids}})
fails (cannot find any document).To reproduce the issue, you have to change your MongoDB schema with
_id: { es_indexed: false }
, then you should synchronize and finally try to do a query withhydrate
option settrue
.You should see the hits only with the
hydrate
set tofalse
.