ankitsultana commented on code in PR #14981: URL: https://github.com/apache/pinot/pull/14981#discussion_r1941911832
########## pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/MultistageGroupByExecutor.java: ########## @@ -87,7 +87,13 @@ public MultistageGroupByExecutor( _aggType = aggType; _leafReturnFinalResult = leafReturnFinalResult; _resultSchema = resultSchema; + int maxInitialResultHolderCapacity = getMaxInitialResultHolderCapacity(opChainMetadata, nodeHint); + Integer mseCapacity = getMSEMaxInitialResultHolderCapacity(opChainMetadata, nodeHint); Review Comment: nit: naming could be made slightly more precise (e.g. `mseMaxInitialResultHolderCapacity`). Also you could move this logic to a separate method in the class to keep this clean. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org