-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Modify field collapsing tests #65018
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
Closed
Closed
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
There are test failures of 110_field_collapsing test that happen only in a mixed cluster on 7.x + 6.x nodes. The failure looks to be about that some hits are not visible for search, as even a simple count query fails as it expects 6 hits, but gets only 5. Thus a possible explanation for failure could be that indexing operation was not completely successful. This modifies the test as: - uses bulk indexing instead of a number of index operations - breaks a test into two: 1) simple indexing and 2) indexing with versions to check if a problem with indexing could be because of versions. Relates to elastic#52416
Pinging @elastic/es-search (:Search/Search) |
Pinging @elastic/es-distributed (Team:Distributed) |
Pinging also distributed team, because count API did not match the number of expected indexed docs. |
Closing in favour of #69753 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
:Distributed Indexing/Distributed
A catch all label for anything in the Distributed Indexing Area. Please avoid if you can.
:Search/Search
Search-related issues that do not fall into other categories
Team:Distributed (Obsolete)
Meta label for distributed team (obsolete). Replaced by Distributed Indexing/Coordination.
>test
Issues or PRs that are addressing/adding tests
v6.8.15
v7.13.0
v8.0.0-alpha1
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.
There are test failures of 110_field_collapsing test that
happen only in a mixed cluster on 7.x + 6.x nodes.
The failure looks to be about that some hits are not visible for search,
as even a simple count query fails as it expects 6 hits, but gets
only 5.
Thus a possible explanation for failure could be that indexing
operation was not completely successful.
This modifies the test as:
with versions to check if a problem with indexing could be because
of versions.
Relates to #52416