-
Notifications
You must be signed in to change notification settings - Fork 183
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
Adding an example for bulk update operation #690
Adding an example for bulk update operation #690
Conversation
Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com>
Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com>
Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com>
samples/src/main/java/org/opensearch/client/samples/util/CommonUtil.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com>
Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com>
Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com>
Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com>
Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com>
Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @karthiks3000 !
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-690-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 25bd4cf19dc2bd7e31596865cf75f031104d6dfa
# Push it to GitHub
git push --set-upstream origin backport/backport-690-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 |
Might be failing since #687 first needs to be backported to 2.x. Will re-trigger this once that is done. |
* Adding an example for bulk update operation Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> * updated the changelog.md Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> * changes made by spotlessApply Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> * removing CommonUtil based on review comments Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> * reverting files to original state Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> * changes by spotlessApply Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> * removing static fields and unnecessary waits Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> * changes as per review comments Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> * removing unnecessary changes Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> --------- Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> (cherry picked from commit 25bd4cf) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* Adding an example for bulk update operation * updated the changelog.md * changes made by spotlessApply * removing CommonUtil based on review comments * reverting files to original state * changes by spotlessApply * removing static fields and unnecessary waits * changes as per review comments * removing unnecessary changes --------- (cherry picked from commit 25bd4cf) Signed-off-by: Karthik Subramanian <karthiks3000@yahoo.com> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Description
Updating the Bulk example to also showcase bulk update operations. Moved duplicate code into re-usable methods.
Issues Resolved
Closes 590
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.