gortiz commented on code in PR #10372: URL: https://github.com/apache/pinot/pull/10372#discussion_r1131137892
########## pinot-core/src/main/java/org/apache/pinot/core/operator/dociditerators/MVScanDocIdIterator.java: ########## @@ -47,15 +47,17 @@ public final class MVScanDocIdIterator implements ScanBasedDocIdIterator { private int _nextDocId = 0; private long _numEntriesScanned = 0L; + private final int _batchSize; - public MVScanDocIdIterator(PredicateEvaluator predicateEvaluator, DataSource dataSource, int numDocs) { + public MVScanDocIdIterator(PredicateEvaluator predicateEvaluator, DataSource dataSource, int numDocs, int batchSize) { Review Comment: You are right, although I guess we will need to modify `MVScanDocIdIterator` in future in order to optimize the access in this case. -- 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