jasperjiaguo commented on code in PR #9286: URL: https://github.com/apache/pinot/pull/9286#discussion_r956676712
########## pinot-core/src/main/java/org/apache/pinot/core/operator/combine/GroupByOrderByCombineOperator.java: ########## @@ -197,6 +205,13 @@ protected void processSegments(int taskIndex) { } } + // Check for thread interruption, every time after merging 10_000 keys + private void checkMergePhaseInterruption(long mergedKeys) { + if (mergedKeys % DocIdSetPlanNode.MAX_DOC_PER_CALL == 0 && Thread.interrupted()) { Review Comment: fixed ########## pinot-core/src/main/java/org/apache/pinot/core/data/manager/BaseTableDataManager.java: ########## @@ -142,7 +142,7 @@ public void init(TableDataManagerConfig tableDataManagerConfig, String instanceI _isStreamSegmentDownloadUntar = tableDataManagerParams.isStreamSegmentDownloadUntar(); if (_isStreamSegmentDownloadUntar) { LOGGER.info("Using streamed download-untar for segment download! " - + "The rate limit interval for streamed download-untar is {} ms", + + "The rate limit interval for streamed download-untar is {} bytes", Review Comment: fixed -- 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