-
Notifications
You must be signed in to change notification settings - Fork 129
feat: RetryHelper to report all previous exceptions #4040
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
base: main
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @AbgarSim, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly improves the debuggability of retriable operations within the BigQuery client library. By capturing and reporting all intermediate exceptions that occur during retry attempts, developers will gain a clearer understanding of the sequence of failures leading to a final exception. This change ensures that transient issues are easier to diagnose by providing a full context of what went wrong across all retries. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request enhances the RetryHelper to report all previous exceptions from failed attempts by adding them as suppressed exceptions to the final exception. This is a valuable improvement for debugging failed operations that involve retries. The implementation is solid, wrapping the user-provided Callable to record failures and then attaching them in the final catch block. The changes are well-supported by a new test suite that covers various scenarios, including multiple failures before success and exhausting all retry attempts. My only feedback is a minor clarification in a code comment to ensure it accurately reflects the implementation's behavior regarding duplicate exceptions.
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigQueryRetryHelper.java
Outdated
Show resolved
Hide resolved
83e1407 to
4b60f26
Compare
4b60f26 to
a64e3b4
Compare
|
Thanks for the PR @AbgarSim! I will take a look at this over the coming days/ week. I did a quick pas over this and the changes generally look fine. I just want to double check the behavior with Gax's RetryingExecutor and ensure there isn't anything unexpected. The lint issue look like it's complaining about a missing header in the newly added test. We just need to add that with the year :) |
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
Fixes #3951 ☕️
If you write sample code, please follow the samples format.