Indhumathi27 commented on a change in pull request #4080: URL: https://github.com/apache/carbondata/pull/4080#discussion_r567844159
########## File path: integration/spark/src/main/java/org/apache/spark/sql/secondaryindex/load/CarbonInternalLoaderUtil.java ########## @@ -51,9 +51,10 @@ public static List<String> getListOfValidSlices(LoadMetadataDetails[] details) { List<String> activeSlices = new ArrayList<>(CarbonCommonConstants.DEFAULT_COLLECTION_SIZE); for (LoadMetadataDetails oneLoad : details) { - if (SegmentStatus.SUCCESS.equals(oneLoad.getSegmentStatus()) + // No need to consider external segments for SI load + if (oneLoad.getPath() == null && (SegmentStatus.SUCCESS.equals(oneLoad.getSegmentStatus()) Review comment: Please add code to not repair si, when add load is executed ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org