siddharthteotia opened a new issue, #8634:
URL: https://github.com/apache/pinot/issues/8634
```
`
public int next() {
while (_nextDocId < _numDocs) {
int nextDocId = _nextDocId++;
_numEntriesScanned++;
if (_valueMatcher.doesValueMatch(nextDocId)) {
return nextDocId;
}
}
return Constants.EOF;
}
`
https://github.com/apache/pinot/blob/master/pinot-core/src/main/java/org/apache/pinot/core/operator/dociditerators/SVScanDocIdIterator.java
Bulk API can potentially be added to do this in a tight-loop (vectorized
like manner) for few fixed number of records at a time as opposed to a function
call to `doesValueMatch` per document. May be there is way to change interface
such that caller of iterator can possibly do `doesValueMatch` in a tight-loop
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]