-
Notifications
You must be signed in to change notification settings - Fork 535
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
[BREAK IN 2.20.0] Remove support for Batch Grouping configuration #23336
base: main
Are you sure you want to change the base?
[BREAK IN 2.20.0] Remove support for Batch Grouping configuration #23336
Conversation
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.
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
"section": legacy | ||
--- | ||
|
||
Grouped batching is enabled by default and IContainerRuntimeOptinos.enableGroupedBatching has been removed |
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.
The word 'IContainerRuntimeOptinos' should be 'IContainerRuntimeOptions'.
Grouped batching is enabled by default and IContainerRuntimeOptinos.enableGroupedBatching has been removed | |
Grouped batching is enabled by default and IContainerRuntimeOptions.enableGroupedBatching has been removed |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
🔗 No broken links found! ✅ Your attention to detail is admirable. linkcheck output
|
Description
After discussing the work in task #8124, we concluded that it was best to make Batch Grouping dependent on Batch Compression.
This means that we need to remove the ability for users to configure Batch Grouping.
Acceptance Criteria:
Fluid users can no longer configure Batch Grouping.
Execution Plan:
Remove Batch Grouping configuration from containerRuntime.ts and update it to the IContainerRuntimeOptionsInternal.enableGroupedBatching version.
Breaking Changes
This is a breaking change but IContainerRuntimeOptionsInternal has been created to still be compatible with different versions of FF.
Reviewer Guidance
Please let me know if you think there's anything missing that I should add to this PR or anything related to it
Fixes AB#26249