You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "Ayush Saxena (Jira)" <ji...@apache.org> on 2019/11/20 21:39:00 UTC

[jira] [Created] (HDFS-14999) Avoid Potential Infinite Loop in DFSNetworkTopology

Ayush Saxena created HDFS-14999:
-----------------------------------

             Summary: Avoid Potential Infinite Loop in DFSNetworkTopology
                 Key: HDFS-14999
                 URL: https://issues.apache.org/jira/browse/HDFS-14999
             Project: Hadoop HDFS
          Issue Type: Improvement
            Reporter: Ayush Saxena
            Assignee: Ayush Saxena


{code:java}
    do {
      chosen = chooseRandomWithStorageTypeAndExcludeRoot(root, excludeRoot,
          type);
      if (excludedNodes == null || !excludedNodes.contains(chosen)) {
        break;
      } else {
        LOG.debug("Node {} is excluded, continuing.", chosen);
      }
    } while (true);
{code}

Observed this loop getting stuck as part of testing HDFS-14913.

There should be some exit condition or max retries here



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: hdfs-dev-help@hadoop.apache.org