-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[Remote Store] Fix couple of Remote Store flaky test and use bulk api for ingestion #9190
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
Compatibility status:
|
Compatibility status:
|
Gradle Check (Jenkins) Run Completed with:
|
Failed tests in earlier gradle run are not related
|
Gradle Check (Jenkins) Run Completed with:
|
server/src/internalClusterTest/java/org/opensearch/remotestore/ReplicaToPrimaryPromotionIT.java
Outdated
Show resolved
Hide resolved
LGTM. 1 minor comment. Also, gradle check is failing in UTs and i dont see ITs ran in the logs |
...er/src/internalClusterTest/java/org/opensearch/remotestore/RemoteStoreBaseIntegTestCase.java
Show resolved
Hide resolved
server/src/internalClusterTest/java/org/opensearch/remotestore/RemoteStoreIT.java
Show resolved
Hide resolved
|
Signed-off-by: Gaurav Bafna <gbbafna@amazon.com>
Signed-off-by: Gaurav Bafna <gbbafna@amazon.com>
18371e8
to
3e42a66
Compare
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
@@ Coverage Diff @@
## main #9190 +/- ##
============================================
- Coverage 71.08% 71.07% -0.01%
+ Complexity 57347 57324 -23
============================================
Files 4770 4770
Lines 270548 270548
Branches 39563 39563
============================================
- Hits 192328 192303 -25
- Misses 61985 62034 +49
+ Partials 16235 16211 -24 |
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-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/backport-2.x
# Create a new branch
git switch --create backport/backport-9190-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 d06926c863c4a1ad0caf9e87f43fc7c8d6369b8c
# Push it to GitHub
git push --set-upstream origin backport/backport-9190-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/backport-2.x Then, create a pull request where the |
… for ingestion (opensearch-project#9190) --------- Signed-off-by: Gaurav Bafna <gbbafna@amazon.com>
… for ingestion (opensearch-project#9190) --------- Signed-off-by: Gaurav Bafna <gbbafna@amazon.com> (cherry picked from commit d06926c)
… for ingestion (opensearch-project#9190) --------- Signed-off-by: Gaurav Bafna <gbbafna@amazon.com> (cherry picked from commit d06926c) Signed-off-by: Marc Handalian <handalm@amazon.com>
… for ingestion (opensearch-project#9190) --------- Signed-off-by: Gaurav Bafna <gbbafna@amazon.com> (cherry picked from commit d06926c) Signed-off-by: Marc Handalian <handalm@amazon.com>
… for ingestion (opensearch-project#9190) --------- Signed-off-by: Gaurav Bafna <gbbafna@amazon.com>
… for ingestion (opensearch-project#9190) --------- Signed-off-by: Gaurav Bafna <gbbafna@amazon.com>
… for ingestion (opensearch-project#9190) --------- Signed-off-by: Gaurav Bafna <gbbafna@amazon.com> Signed-off-by: Kaushal Kumar <ravi.kaushal97@gmail.com>
… for ingestion (opensearch-project#9190) --------- Signed-off-by: Gaurav Bafna <gbbafna@amazon.com> Signed-off-by: Ivan Brusic <ivan.brusic@flocksafety.com>
… for ingestion (opensearch-project#9190) --------- Signed-off-by: Gaurav Bafna <gbbafna@amazon.com> Signed-off-by: Shivansh Arora <hishiv@amazon.com>
Description
Fixes two flaky tests :
Updated
response as well on new docs creation . Factored in same .Use of bulk indexing API to make Remote ITs faster as well .
Related
Resolves #8658
Resolves #9130
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.