suddendust commented on a change in pull request #7893: URL: https://github.com/apache/pinot/pull/7893#discussion_r774482377
########## File path: pinot-server/src/main/java/org/apache/pinot/server/starter/helix/HelixInstanceDataManager.java ########## @@ -212,36 +218,56 @@ public void reloadSegment(String tableNameWithType, String segmentName, boolean } @Override - public void reloadAllSegments(String tableNameWithType, boolean forceDownload) { + public void reloadAllSegments(String tableNameWithType, boolean forceDownload, + @Nullable Semaphore refreshThreadSemaphore) + throws Exception { LOGGER.info("Reloading all segments in table: {}", tableNameWithType); TableConfig tableConfig = ZKMetadataProvider.getTableConfig(_propertyStore, tableNameWithType); Preconditions.checkNotNull(tableConfig); - Schema schema = ZKMetadataProvider.getTableSchema(_propertyStore, tableNameWithType); - List<String> failedSegments = new ArrayList<>(); - Exception sampleException = null; List<SegmentMetadata> segmentsMetadata = getAllSegmentsMetadata(tableNameWithType); - for (SegmentMetadata segmentMetadata : segmentsMetadata) { + ExecutorService workers = Executors.newCachedThreadPool(); + final AtomicReference<Exception> sampleException = new AtomicReference<>(); + //calling thread hasn't acquired any permit so we don't reload any segments using it. + CompletableFuture.allOf(segmentsMetadata.stream().map(segmentMetadata -> CompletableFuture.runAsync(() -> { try { + acquireSema("ALL", refreshThreadSemaphore); Review comment: Yes, that was a miss. Thanks! -- 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