Jackie-Jiang opened a new pull request #7550: URL: https://github.com/apache/pinot/pull/7550
Currently when creating the PlanNodes for the query, there is some complex logic which also accesses the index. The plan creation is done on a single thread within a for loop, so this step can take long when there are lots of segments. This PR removes the complex logic, and make PlanNode creation very light-weight. The logic of choosing the physical execution plan (Operator) is moved to the `PlanNode.run()`. -- 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]
