JingsongLi opened a new pull request, #7951:
URL: https://github.com/apache/paimon/pull/7951

   When a compound predicate (AND/OR) involves multiple fields, each field's 
BTree index lookup is now submitted to a thread pool and executed in parallel. 
This reduces scan latency for multi-field global index queries.
   
   Key changes:
   - GlobalIndexEvaluator accepts an optional ExecutorService for parallel 
child predicate evaluation in visitParallel, with sequential fallback.
   - GlobalIndexScanner creates an isolated evaluator thread pool to avoid 
deadlocks with the existing UnionGlobalIndexReader executor.
   - Python side uses ThreadPoolExecutor with threading.Lock for thread-safe 
reader cache access.
   - Added GlobalIndexEvaluatorTest for both Java and Python.
   


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

Reply via email to