Skip to content

[Dataflow Streaming] Reuse proto builders on hot path to reduce GC overhead - #36164

Merged
scwhittle merged 2 commits into
apache:masterfrom
arunpandianp:microopt
Sep 17, 2025
Merged

[Dataflow Streaming] Reuse proto builders on hot path to reduce GC overhead#36164
scwhittle merged 2 commits into
apache:masterfrom
arunpandianp:microopt

Conversation

@arunpandianp

Copy link
Copy Markdown
Contributor

#33578

Noticed it while debugging long GC on a high cardinality job.

@arunpandianp

Copy link
Copy Markdown
Contributor Author

R: @scwhittle

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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 WindmillStreamWriter now reuses Windmill.Message.Builder and Windmill.OutputMessageBundle.Builder instances. 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 GetWorkResponseChunkAssembler has been updated to reuse a WorkItem.Builder instance. This change avoids repeated creation of WorkItem.Builder objects 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

  1. 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.

@github-actions

Copy link
Copy Markdown
Contributor

Stopping reviewer notifications for this pull request: review requested by someone other than the bot, ceding control. If you'd like to restart, comment assign set of reviewers

@arunpandianp

Copy link
Copy Markdown
Contributor Author

/gemini review

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

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 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.

@arunpandianp

Copy link
Copy Markdown
Contributor Author

/gemini review

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

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 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.

@arunpandianp
arunpandianp force-pushed the microopt branch 2 times, most recently from acd30aa to 353d964 Compare September 15, 2025 23:43
@scwhittle
scwhittle merged commit 98d4178 into apache:master Sep 17, 2025
15 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants