Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@ public NativeWorkerSessionPropertyProvider(FeaturesConfig featuresConfig)
"preferred_output_batch_bytes and average row size estimates.",
10000,
!nativeExecution),
longProperty(
Copy link
Contributor

Choose a reason for hiding this comment

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

issue (review_instructions): No accompanying documentation was added for the new session property NATIVE_MAX_PARTIAL_AGGREGATION_MEMORY.

Each session property added should have documentation, such as a comment or entry in a relevant doc file, explaining its purpose and usage. Please ensure documentation is provided for NATIVE_MAX_PARTIAL_AGGREGATION_MEMORY.

Review instructions:

Path patterns: **/NativeWorkerSessionPropertyProvider.java

Instructions:
Make sure that accompanying documentation is added for any session property which is added to this file.

NATIVE_MAX_PARTIAL_AGGREGATION_MEMORY,
"The max partial aggregation memory when data reduction is not optimal.",
1L << 24,
!nativeExecution),
longProperty(
NATIVE_MAX_EXTENDED_PARTIAL_AGGREGATION_MEMORY,
"The max partial aggregation memory when data reduction is optimal.",
Expand Down
Loading