Jackie-Jiang opened a new issue #7338: URL: https://github.com/apache/pinot/issues/7338
Currently when reloading the segments for a table, the segments are reloaded sequentially (single threaded). This is intentional because segment reload usually needs to generate new indexes on the fly, which can consume resources while server still need to serve queries. In certain cases, users might want to use multiple threads to reload the segments, and we can add an option of parallelism in the reload message and make it default to 1. Note that there is another semaphore to control the parallelism, and we should still comply with the semaphore. The logic resides in `SegmentMessageHandlerFactory` class -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org