-
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.
🔗 No broken links found! ✅ Your attention to detail is admirable. linkcheck output
|
"section": legacy | ||
--- | ||
|
||
Grouped batching is enabled by default and IContainerRuntimeOptions.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.
Grouped batching is enabled by default and IContainerRuntimeOptions.enableGroupedBatching has been removed | |
Grouped batching is now enabled by default and cannot be disabled |
|
||
Grouped batching is enabled by default and IContainerRuntimeOptions.enableGroupedBatching has been removed | ||
|
||
This option allowed an application to disable grouped batching. But now we no longer want users to be able to turn it on or off, so this option can be removed and it will always be enabled by default. |
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.
This option allowed an application to disable grouped batching. But now we no longer want users to be able to turn it on or off, so this option can be removed and it will always be enabled by default. | |
The Grouped Batching feature in the container runtime has stabilized and is now enabled by default. | |
The `IContainerRuntimeOptions.enableGroupedBatching` option, which allowed an application to disable grouped batching, has been removed. Grouped Batching is now considered a core part of the container runtime, and as such can no longer be disabled. |
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