You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Vinayakumar B (JIRA)" <ji...@apache.org> on 2017/05/16 17:08:04 UTC

[jira] [Created] (HADOOP-14427) Avoid reloading of Configuration in ViewFileSystem creation.

Vinayakumar B created HADOOP-14427:
--------------------------------------

             Summary: Avoid reloading of Configuration in ViewFileSystem creation.
                 Key: HADOOP-14427
                 URL: https://issues.apache.org/jira/browse/HADOOP-14427
             Project: Hadoop Common
          Issue Type: Bug
          Components: viewfs
            Reporter: Vinayakumar B
            Assignee: Vinayakumar B


Avoid {{new Configuration()}} in below code. during viewfilesystem creation
{code}    public InternalDirOfViewFs(final InodeTree.INodeDir<FileSystem> dir,
        final long cTime, final UserGroupInformation ugi, URI uri)
      throws URISyntaxException {
      myUri = uri;
      try {
        initialize(myUri, new Configuration());
      } catch (IOException e) {
        throw new RuntimeException("Cannot occur");
      }
      theInternalDir = dir;
      creationTime = cTime;
      this.ugi = ugi;
    }{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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