-
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] Add segment transfer timeout dynamic setting #13679
[Remote Store] Add segment transfer timeout dynamic setting #13679
Conversation
Signed-off-by: Varun Bansal <bansvaru@amazon.com>
❌ Gradle check result for 8f59a8d: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for 85416eb: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
server/src/main/java/org/opensearch/index/shard/RemoteStoreRefreshListener.java
Outdated
Show resolved
Hide resolved
server/src/main/java/org/opensearch/indices/RemoteStoreSettings.java
Outdated
Show resolved
Hide resolved
server/src/test/java/org/opensearch/index/shard/RemoteStoreRefreshListenerTests.java
Show resolved
Hide resolved
…rrupted latch.await Signed-off-by: Varun Bansal <bansvaru@amazon.com>
Signed-off-by: Varun Bansal <bansvaru@amazon.com>
a4ac198
to
16eb7d2
Compare
❌ Gradle check result for a4ac198: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
Thanks @sachinpkale for approving. I've added the necessary details and addressed your comment. |
❕ Gradle check result for 251ecd0: UNSTABLE Please review all flaky tests that succeeded after retry and create an issue if one does not already exist to track the flaky failure. |
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/OpenSearch/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/OpenSearch/backport-2.x
# Create a new branch
git switch --create backport/backport-13679-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 b3049fb5ec860f63fdfe33c5b176869b1e4255e6
# Push it to GitHub
git push --set-upstream origin backport/backport-13679-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/OpenSearch/backport-2.x Then, create a pull request where the |
…ch-project#13679) * [Remote Store] Add segment transfer timeout dynamic setting Signed-off-by: Varun Bansal <bansvaru@amazon.com> (cherry picked from commit b3049fb)
…ch-project#13679) * [Remote Store] Add segment transfer timeout dynamic setting Signed-off-by: Varun Bansal <bansvaru@amazon.com> (cherry picked from commit b3049fb)
…ch-project#13679) * [Remote Store] Add segment transfer timeout dynamic setting Signed-off-by: Varun Bansal <bansvaru@amazon.com>
…ch-project#13679) (opensearch-project#13793) * [Remote Store] Add segment transfer timeout dynamic setting Signed-off-by: Varun Bansal <bansvaru@amazon.com> (cherry picked from commit b3049fb) Signed-off-by: kkewwei <kkewwei@163.com>
Description
Related Issues
Resolves #13783
Check List
API changes companion pull request created.Failing checks are inspected and point to the corresponding known issue(s) (See: Troubleshooting Failing Builds)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.