You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Matteo Bertozzi (JIRA)" <ji...@apache.org> on 2013/05/09 13:37:15 UTC

[jira] [Created] (HBASE-8516) FSUtils.create() fail with ViewFS

Matteo Bertozzi created HBASE-8516:
--------------------------------------

             Summary: FSUtils.create() fail with ViewFS
                 Key: HBASE-8516
                 URL: https://issues.apache.org/jira/browse/HBASE-8516
             Project: HBase
          Issue Type: Bug
    Affects Versions: 0.95.0, 0.94.7
            Reporter: Matteo Bertozzi
            Assignee: Matteo Bertozzi
            Priority: Trivial
             Fix For: 0.98.0, 0.94.8, 0.95.2
         Attachments: HBASE-8515-94.patch, HBASE-8515.patch

FSUtils.create() uses fs.getDefaultReplication() and fs.getDefaultBlockSize() which is deprecated and in case of ViewFS throws an exception. replace that with the fs.getDefault*(path)

{code}
@Override
public long getDefaultBlockSize() {
  throw new NotInMountpointException("getDefaultBlockSize");
}

@Override
public short getDefaultReplication() {
  throw new NotInMountpointException("getDefaultReplication");
}
{code}

{noformat}
exception in thread "main" org.apache.hadoop.fs.viewfs.NotInMountpointException: getDefaultReplication on empty path is invalid
	at org.apache.hadoop.fs.viewfs.ViewFileSystem.getDefaultReplication(ViewFileSystem.java:508)
	at org.apache.hadoop.hbase.util.FSUtils.create(FSUtils.java:156)
{noformat}

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