nandakumar131 commented on code in PR #8940:
URL: https://github.com/apache/ozone/pull/8940#discussion_r2287142940


##########
hadoop-hdds/server-scm/src/main/java/org/apache/hadoop/hdds/scm/safemode/AbstractContainerSafeModeRule.java:
##########
@@ -0,0 +1,203 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.hadoop.hdds.scm.safemode;
+
+import static 
org.apache.hadoop.hdds.HddsConfigKeys.HDDS_SCM_SAFEMODE_THRESHOLD_PCT;
+import static 
org.apache.hadoop.hdds.HddsConfigKeys.HDDS_SCM_SAFEMODE_THRESHOLD_PCT_DEFAULT;
+
+import com.google.common.annotations.VisibleForTesting;
+import com.google.common.base.Preconditions;
+import java.util.List;
+import java.util.Map;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.atomic.AtomicInteger;
+import java.util.stream.Collectors;
+import org.apache.hadoop.hdds.conf.ConfigurationSource;
+import org.apache.hadoop.hdds.protocol.DatanodeID;
+import org.apache.hadoop.hdds.protocol.proto.HddsProtos.LifeCycleState;
+import org.apache.hadoop.hdds.protocol.proto.HddsProtos.ReplicationType;
+import org.apache.hadoop.hdds.scm.container.ContainerID;
+import org.apache.hadoop.hdds.scm.container.ContainerInfo;
+import org.apache.hadoop.hdds.scm.container.ContainerManager;
+import org.apache.hadoop.hdds.scm.container.ContainerNotFoundException;
+import org.apache.hadoop.hdds.scm.events.SCMEvents;
+import 
org.apache.hadoop.hdds.scm.server.SCMDatanodeProtocolServer.NodeRegistrationContainerReport;
+import org.apache.hadoop.hdds.server.events.EventQueue;
+import org.apache.hadoop.hdds.server.events.TypedEvent;
+
+/**
+ * Abstract class for Container Safe mode exit rule.
+ */
+public abstract class AbstractContainerSafeModeRule extends 
SafeModeExitRule<NodeRegistrationContainerReport> {
+
+  private final ContainerManager containerManager;
+  private final Map<ContainerID, Integer> containers = new 
ConcurrentHashMap<>();
+  private final double safeModeCutoff;
+  private final AtomicInteger totalContainers = new AtomicInteger();
+  private final AtomicInteger containersWithMinReplicas = new AtomicInteger();
+
+  public AbstractContainerSafeModeRule(ConfigurationSource conf, 
SCMSafeModeManager safeModeManager,
+      ContainerManager containerManager, EventQueue eventQueue) {
+    super(safeModeManager, eventQueue);
+    this.containerManager = containerManager;
+    this.safeModeCutoff = getSafeModeCutoff(conf);
+    initializeRule();
+  }
+
+  protected abstract ReplicationType getContainerType();
+
+  protected abstract void handleReportedContainer(ContainerID containerID, 
DatanodeID datanodeID);
+
+  protected long getNumberOfContainersWithMinReplica() {
+    return containersWithMinReplicas.get();
+  }
+
+  protected final void incrementContainersWithMinReplicas() {
+    containersWithMinReplicas.incrementAndGet();
+  }
+
+  protected void initializeRule() {
+    containers.clear();
+    containerManager.getContainers(getContainerType()).stream()
+        .filter(this::isClosed)
+        .filter(c -> c.getNumberOfKeys() > 0)
+        .forEach(c -> containers.put(c.containerID(), 
c.getReplicationConfig().getMinimumNodes()));
+    totalContainers.set(containers.size());
+    final long cutOff = (long) Math.ceil(getTotalNumberOfContainers() * 
getSafeModeCutoff());
+    getSafeModeMetrics().setNumContainerReportedThreshold(getContainerType(), 
cutOff);
+    SCMSafeModeManager.getLogger().info("Refreshed {} Containers threshold 
count to {}.", getContainerType(), cutOff);
+  }
+
+  protected Map<ContainerID, Integer> getContainers() {
+    return containers;
+  }
+
+  protected int getTotalNumberOfContainers() {
+    return totalContainers.get();
+  }
+
+  protected double getSafeModeCutoff() {
+    return safeModeCutoff;
+  }
+
+  @Override
+  protected TypedEvent<NodeRegistrationContainerReport> getEventType() {
+    return SCMEvents.CONTAINER_REGISTRATION_REPORT;
+  }
+
+  @Override
+  protected void process(NodeRegistrationContainerReport report) {
+    final DatanodeID datanodeID = report.getDatanodeDetails().getID();
+    report.getReport().getReportsList().stream()
+        .map(c -> ContainerID.valueOf(c.getContainerID()))
+        .forEach(cid -> handleReportedContainer(cid, datanodeID));
+
+    if (scmInSafeMode()) {
+      SCMSafeModeManager.getLogger().info(
+          "SCM in safe mode. {} % containers [{}] have at least one reported 
replica",
+          getContainerType(), String.format("%.2f", 
getCurrentContainerThreshold() * 100));
+    }
+  }
+
+  @Override
+  protected synchronized boolean validate() {
+    if (validateBasedOnReportProcessing()) {
+      return getCurrentContainerThreshold() >= getSafeModeCutoff();
+    }
+
+    final List<ContainerInfo> containerInfos = 
containerManager.getContainers(getContainerType());
+    return containerInfos.stream()
+        .filter(this::isClosed)
+        .map(ContainerInfo::containerID)
+        .noneMatch(this::isMissing);
+  }
+
+  @VisibleForTesting
+  public double getCurrentContainerThreshold() {
+    final long total = getTotalNumberOfContainers();
+    return total == 0 ? 1 : ((double) getNumberOfContainersWithMinReplica() / 
total);
+  }
+
+  @Override
+  public synchronized void refresh(boolean forceRefresh) {
+    if (forceRefresh || !validate()) {
+      initializeRule();
+    }
+  }
+
+  @Override
+  protected void cleanup() {
+    getContainers().clear();
+  }
+
+  /**
+   * Checks if the container has at least the minimum required number of 
replicas.
+   */
+  protected boolean isMissing(ContainerID id) {
+    try {
+      int minReplica = getMinReplica(id);
+      return containerManager.getContainerReplicas(id).size() < minReplica;
+    } catch (ContainerNotFoundException ex) {
+      /*
+       * This should never happen; in case this happens, the container somehow 
got removed from SCM.
+       * Safemode rule doesn't have to log/fix this. We will just exclude this
+       * from the rule validation.
+       */
+      return false;
+    }
+  }
+
+  protected boolean isClosed(ContainerInfo container) {
+    final LifeCycleState state = container.getState();
+    return state == LifeCycleState.QUASI_CLOSED || state == 
LifeCycleState.CLOSED;
+  }
+
+  protected int getMinReplica(ContainerID id) {
+    return containers.getOrDefault(id, 0);
+  }
+
+  @Override
+  public String getStatusText() {
+    String status = String.format("%1.2f%% of [" + getContainerType() + "] " +
+            "Containers(%s / %s) with at least N reported replica (=%1.2f) >= 
" +
+            "safeModeCutoff (=%1.2f);",
+        getCurrentContainerThreshold() * 100,
+        getNumberOfContainersWithMinReplica(), getTotalNumberOfContainers(),
+        getCurrentContainerThreshold(), getSafeModeCutoff());
+
+    final List<ContainerID> sampleContainers = 
getContainers().keySet().stream()
+        .limit(SAMPLE_CONTAINER_DISPLAY_LIMIT)
+        .collect(Collectors.toList());
+
+    if (!sampleContainers.isEmpty()) {
+      String sampleECContainerText = "Sample EC Containers not satisfying the 
criteria : " + sampleContainers + ";";

Review Comment:
   My bad, will update the PR. Thanks for catching this.



-- 
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]

Reply via email to