[Dataflow Streaming] Reuse proto builders on hot path to reduce GC overhead - #36164
Conversation
|
R: @scwhittle |
There was a problem hiding this comment.
Summary of Changes
Hello @arunpandianp, 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 introduces targeted performance optimizations for Dataflow Streaming by strategically reusing Protocol Buffer builders in critical 'hot path' code sections. By initializing and clearing builders instead of creating new ones for each operation, the changes aim to significantly reduce garbage collection overhead, particularly in high-cardinality jobs, leading to improved stability and efficiency in data processing.
Highlights
- WindmillSink Optimization: The
WindmillStreamWriternow reusesWindmill.Message.BuilderandWindmill.OutputMessageBundle.Builderinstances. Instead of creating new builders for each message or bundle, existing builders are cleared and re-populated, significantly reducing object allocation and subsequent garbage collection overhead during message construction. - GetWorkResponseChunkAssembler Optimization: The
GetWorkResponseChunkAssemblerhas been updated to reuse aWorkItem.Builderinstance. This change avoids repeated creation ofWorkItem.Builderobjects when parsing incoming work item data, contributing to lower GC pressure during the assembly of work items.
Using Gemini Code Assist
The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.
| Feature | Command | Description |
|---|---|---|
| Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
| Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
| Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in pull request comments and review comments. |
| Help | /gemini help |
Displays a list of available commands. |
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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.
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
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
|
Stopping reviewer notifications for this pull request: review requested by someone other than the bot, ceding control. If you'd like to restart, comment |
|
/gemini review |
There was a problem hiding this comment.
Code Review
This pull request aims to reduce garbage collection overhead by reusing Protobuf builders in performance-sensitive code paths. The changes in WindmillSink.java and GetWorkResponseChunkAssembler.java correctly apply this optimization. However, I've identified a potential issue in GetWorkResponseChunkAssembler.java where the change in parsing logic alters exception handling for malformed messages, which could lead to uncaught runtime exceptions. I've provided a detailed comment and a code suggestion to address this while preserving the performance improvements.
|
/gemini review |
There was a problem hiding this comment.
Code Review
This pull request aims to reduce GC overhead on hot paths by reusing protobuf builders, which is a great optimization. The changes in WindmillSink.java correctly implement this pattern for Message.Builder and OutputMessageBundle.Builder. Similarly, GetWorkResponseChunkAssembler.java is updated to reuse a WorkItem.Builder. However, I've found a critical issue in the exception handling in GetWorkResponseChunkAssembler.java that will likely cause a compilation failure. Please see my detailed comment.
acd30aa to
353d964
Compare
353d964 to
aa7a19a
Compare
#33578
Noticed it while debugging long GC on a high cardinality job.