walterddr commented on code in PR #9203: URL: https://github.com/apache/pinot/pull/9203#discussion_r946156485
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/PinotHelixResourceManager.java: ########## @@ -2369,143 +2372,152 @@ public void resetSegment(String tableNameWithType, String segmentName, long exte "Could not find segment: %s in ideal state for table: %s", segmentName, tableNameWithType); Map<String, String> externalViewStateMap = externalView.getStateMap(segmentName); - // First, disable or reset the segment for (String instance : instanceSet) { - if (externalViewStateMap == null || !SegmentStateModel.ERROR.equals(externalViewStateMap.get(instance))) { - LOGGER.info("Disabling segment: {} of table: {}", segmentName, tableNameWithType); - // enablePartition takes a segment which is NOT in ERROR state, to OFFLINE state - // TODO: If the controller fails to re-enable the partition, it will be left in disabled state - _helixAdmin.enablePartition(false, _helixClusterName, instance, tableNameWithType, - Lists.newArrayList(segmentName)); - } else { - LOGGER.info("Resetting segment: {} of table: {}", segmentName, tableNameWithType); - // resetPartition takes a segment which is in ERROR state, to OFFLINE state - _helixAdmin.resetPartition(_helixClusterName, instance, tableNameWithType, Lists.newArrayList(segmentName)); - } - } - - // Wait for external view to stabilize - LOGGER.info("Waiting {} ms for external view to stabilize after disable/reset of segment: {} of table: {}", - externalViewWaitTimeMs, segmentName, tableNameWithType); - long startTime = System.currentTimeMillis(); - Set<String> instancesToCheck = new HashSet<>(instanceSet); - while (!instancesToCheck.isEmpty() && System.currentTimeMillis() - startTime < externalViewWaitTimeMs) { - ExternalView newExternalView = getTableExternalView(tableNameWithType); - Preconditions.checkState(newExternalView != null, "Could not find external view for table: %s", - tableNameWithType); - Map<String, String> newExternalViewStateMap = newExternalView.getStateMap(segmentName); - if (newExternalViewStateMap == null) { - continue; + if (targetInstance == null || targetInstance.equals(instance)) { + if (externalViewStateMap == null || SegmentStateModel.OFFLINE.equals(externalViewStateMap.get(instance))) { + LOGGER.info("Skipping reset for segment: {} of table: {} on instance: {}", segmentName, tableNameWithType, + instance); + } else { + LOGGER.info("Resetting segment: {} of table: {} on instance: {}", segmentName, tableNameWithType, instance); + resetPartitionAllState(_helixClusterName, instance, tableNameWithType, Lists.newArrayList(segmentName)); + } } - instancesToCheck.removeIf(instance -> SegmentStateModel.OFFLINE.equals(newExternalViewStateMap.get(instance))); - Thread.sleep(EXTERNAL_VIEW_CHECK_INTERVAL_MS); - } - if (!instancesToCheck.isEmpty()) { - throw new TimeoutException(String.format( - "Timed out waiting for external view to stabilize after call to disable/reset segment: %s of table: %s. " - + "Disable/reset might complete in the background, but skipping enable of segment.", segmentName, - tableNameWithType)); - } - - // Lastly, enable segment - LOGGER.info("Enabling segment: {} of table: {}", segmentName, tableNameWithType); - for (String instance : instanceSet) { - _helixAdmin.enablePartition(true, _helixClusterName, instance, tableNameWithType, - Lists.newArrayList(segmentName)); } } /** - * Resets all segments of a table. The steps involved are - * 1. If segment is in ERROR state in the External View, invoke resetPartition, else invoke disablePartition - * 2. Wait for the external view to stabilize. Step 1 should turn all segments to OFFLINE state - * 3. Invoke enablePartition on the segments + * Resets all segments of a table. This operation invoke resetPartition via state transition message. */ - public void resetAllSegments(String tableNameWithType, long externalViewWaitTimeMs) + public void resetAllSegments(String tableNameWithType, @Nullable String targetInstance) throws InterruptedException, TimeoutException { IdealState idealState = getTableIdealState(tableNameWithType); Preconditions.checkState(idealState != null, "Could not find ideal state for table: %s", tableNameWithType); ExternalView externalView = getTableExternalView(tableNameWithType); Preconditions.checkState(externalView != null, "Could not find external view for table: %s", tableNameWithType); Map<String, Set<String>> instanceToResetSegmentsMap = new HashMap<>(); - Map<String, Set<String>> instanceToDisableSegmentsMap = new HashMap<>(); - Map<String, Set<String>> segmentInstancesToCheck = new HashMap<>(); + Map<String, Set<String>> instanceToSkippedSegmentsMap = new HashMap<>(); Review Comment: this is for log printing purpose so that we keep track for easier debug. (not use for actual operation) -- 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