You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yarn-dev@hadoop.apache.org by "Qi Zhu (Jira)" <ji...@apache.org> on 2021/04/08 07:18:00 UTC

[jira] [Created] (YARN-10728) CS should support ensureRootPrefix to consistent with FS.

Qi Zhu created YARN-10728:
-----------------------------

             Summary: CS should support ensureRootPrefix to consistent with FS.
                 Key: YARN-10728
                 URL: https://issues.apache.org/jira/browse/YARN-10728
             Project: Hadoop YARN
          Issue Type: Improvement
            Reporter: Qi Zhu
            Assignee: Qi Zhu


{code:java}
private static String ensureRootPrefix(String name) {
  if (!name.startsWith(ROOT_QUEUE + ".") && !name.equals(ROOT_QUEUE)) {
    name = ROOT_QUEUE + "." + name;
  }
  return name;
}
{code}
When our cluster change fs to cs.

CS should support above to consistent with FS.



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

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