-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Remove remote translog settings to make all remote indices translog enabled #8719
Remove remote translog settings to make all remote indices translog enabled #8719
Conversation
1edc46c
to
f281cb9
Compare
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
f281cb9
to
31a3104
Compare
Gradle Check (Jenkins) Run Completed with:
|
31a3104
to
4999d3e
Compare
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
3b1f449
to
7f77b5a
Compare
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
7f77b5a
to
01809a0
Compare
Gradle Check (Jenkins) Run Completed with:
|
01809a0
to
4fbf5dc
Compare
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
9b60878
to
ed153bb
Compare
Gradle Check (Jenkins) Run Completed with:
|
92eefff
to
08441f3
Compare
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
4d3d7a0
to
98c77fc
Compare
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
48ab547
to
7bac123
Compare
Gradle Check (Jenkins) Run Completed with:
|
Flaky tests: Failing in other builds as well
|
fadbdcf
to
486964b
Compare
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
@@ Coverage Diff @@
## main #8719 +/- ##
============================================
+ Coverage 70.61% 70.89% +0.28%
- Complexity 56909 57148 +239
============================================
Files 4771 4771
Lines 270253 270235 -18
Branches 39502 39497 -5
============================================
+ Hits 190837 191594 +757
+ Misses 63250 62540 -710
+ Partials 16166 16101 -65
|
server/src/main/java/org/opensearch/cluster/metadata/MetadataCreateIndexService.java
Show resolved
Hide resolved
486964b
to
ef7f650
Compare
Gradle Check (Jenkins) Run Completed with:
|
…tion Signed-off-by: bansvaru <[email protected]>
Signed-off-by: bansvaru <[email protected]>
ef7f650
to
2ab9c84
Compare
Gradle Check (Jenkins) Run Completed with:
|
… some test fixes Signed-off-by: bansvaru <[email protected]>
2ab9c84
to
954a5fa
Compare
Gradle Check (Jenkins) Run Completed with:
|
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-8719-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 c47ec1ba79757ff3fdb7ac59c69209c0dcaa3139
# Push it to GitHub
git push --set-upstream origin backport/backport-8719-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 |
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-8719-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 c47ec1ba79757ff3fdb7ac59c69209c0dcaa3139
# Push it to GitHub
git push --set-upstream origin backport/backport-8719-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 |
…nabled (opensearch-project#8719) Remove remote translog setting and restrict to remote only index creation --------- Signed-off-by: bansvaru <[email protected]> (cherry picked from commit c47ec1b)
…nabled (#8719) (#8813) Remove remote translog setting and restrict to remote only index creation --------- Signed-off-by: bansvaru <[email protected]> (cherry picked from commit c47ec1b) Signed-off-by: Varun Bansal <[email protected]>
…nabled (opensearch-project#8719) Remove remote translog setting and restrict to remote only index creation --------- Signed-off-by: bansvaru <[email protected]>
…nabled (opensearch-project#8719) Remove remote translog setting and restrict to remote only index creation --------- Signed-off-by: bansvaru <[email protected]> Signed-off-by: Kaushal Kumar <[email protected]>
…nabled (opensearch-project#8719) Remove remote translog setting and restrict to remote only index creation --------- Signed-off-by: bansvaru <[email protected]> Signed-off-by: Ivan Brusic <[email protected]>
…nabled (opensearch-project#8719) Remove remote translog setting and restrict to remote only index creation --------- Signed-off-by: bansvaru <[email protected]> Signed-off-by: Shivansh Arora <[email protected]>
Description
Sample json to create remote translog index:
Before this change
After this change
server/src/test/java/org/opensearch/index/shard/SegmentReplicationIndexShardTests.java
changes.Related Issues
Resolves #8769
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.