-
Notifications
You must be signed in to change notification settings - Fork 202
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
Cleanup resources properly when Opensearch sink fails to initialize #4758
Conversation
85507cc
to
3a70f10
Compare
@kkondaka , This PR has a lot of commits that are already merged. Can you clean up the branch so that we know what we are reviewing? |
@dlvenable This is strange. I took care of this issue and it showed only two files as modified last time. Not sure how it got changed again |
a2a9afd
to
73feba5
Compare
Signed-off-by: Krishna Kondaka <[email protected]>
Signed-off-by: Krishna Kondaka <[email protected]>
Signed-off-by: Krishna Kondaka <[email protected]>
883d0ec
to
5361b09
Compare
@@ -615,6 +615,7 @@ private void closeFiles() { | |||
public void shutdown() { | |||
super.shutdown(); | |||
closeFiles(); | |||
openSearchClient.shutdown(); |
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.
What does this shutdown api do ? Does it close the client or shutdown the node ? We don't want the later behavior.
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.
It just shuts down the client to the opensearch. We create it again when we do doInitialize
. So, shutting down is the correct thing to do.
…pensearch-project#4758) * dplive1.yaml Signed-off-by: Krishna Kondaka <[email protected]> * rebased to latest Signed-off-by: Krishna Kondaka <[email protected]> * removed unnecessary file Signed-off-by: Krishna Kondaka <[email protected]> --------- Signed-off-by: Krishna Kondaka <[email protected]> Co-authored-by: Krishna Kondaka <[email protected]> Signed-off-by: Krishna Kondaka <[email protected]>
…pensearch-project#4758) * dplive1.yaml Signed-off-by: Krishna Kondaka <[email protected]> * rebased to latest Signed-off-by: Krishna Kondaka <[email protected]> * removed unnecessary file Signed-off-by: Krishna Kondaka <[email protected]> --------- Signed-off-by: Krishna Kondaka <[email protected]> Co-authored-by: Krishna Kondaka <[email protected]> Signed-off-by: Krishna Kondaka <[email protected]>
…pensearch-project#4758) * dplive1.yaml Signed-off-by: Krishna Kondaka <[email protected]> * rebased to latest Signed-off-by: Krishna Kondaka <[email protected]> * removed unnecessary file Signed-off-by: Krishna Kondaka <[email protected]> --------- Signed-off-by: Krishna Kondaka <[email protected]> Co-authored-by: Krishna Kondaka <[email protected]> Signed-off-by: Krishna Kondaka <[email protected]>
Description
Cleans up resources properly when Opensearch sink fails to initialize
Issues Resolved
Resolves #[Issue number to be closed when this PR is merged]
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.