jainankitk commented on issue #14850: URL: https://github.com/apache/lucene/issues/14850#issuecomment-3931842296
We were recently having some discussion around efficiently iterating over skip list for multiple fields - https://github.com/opensearch-project/OpenSearch/issues/20666. That should probably mitigate some of the disadvantages of not having BKD for multi filter queries. Also, the index should ideally be sorted on some fields which makes (docValue + skipList) similar to BKD, whenever filtering for those fields. And this approach is easily parallelizable, aligns well with `LeafReaderContextPartition` based intra segment search unlike BKD (https://github.com/apache/lucene/issues/13745). -- 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]
