richardstartin commented on issue #7642:
URL: https://github.com/apache/pinot/issues/7642#issuecomment-953110362


   You do do have an implicit range index on `serve_time`. Most of the time is 
spent in the range filter operator ("RangeFilterOperator" - class 
`RangeIndexBasedFilterOperator`), and this is where the high 
`numEntriesScannedInFilter` comes from. 
   
   This would be fixed by setting "rangeIndexVersion": 2 in 0.9.0 (or now if 
you're building pinot yourself), but we can do better still: the bitmap from 
the `user_id` filter _could_ be passed down to the 
`RangeIndexBasedFilterOperator` to accelerate the range query further, as per 
#7597.


-- 
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]

Reply via email to