Matteo Bertozzi created HBASE-8006:
--------------------------------------

             Summary: use FSUtils to get/set hbase.rootdir
                 Key: HBASE-8006
                 URL: https://issues.apache.org/jira/browse/HBASE-8006
             Project: HBase
          Issue Type: Sub-task
            Reporter: Matteo Bertozzi
            Assignee: Matteo Bertozzi
            Priority: Minor
         Attachments: HBASE-8006-v0.patch

We have different ways around the code to get the root dir
{code}
this.conf.get("hbase.rootdir")
new Path(conf.get(HConstants.HBASE_DIR));
fs.makeQualified(new Path(this.c.get(HConstants.HBASE_DIR)));
FSUtils.getRootDir(conf)
{code}

also we have lots of places where we have this set fs.default
{code}
this.conf.set("fs.default.name", fs.getUri().toString());
this.conf.set("fs.defaultFS", fs.getUri().toString());
{code}

replace everything to use the FSUtils and have one single way to do this stuff

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to