[ 
https://issues.apache.org/jira/browse/HBASE-8516?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13654427#comment-13654427
 ] 

Hadoop QA commented on HBASE-8516:
----------------------------------

{color:red}-1 overall{color}.  Here are the results of testing the latest 
attachment 
  http://issues.apache.org/jira/secure/attachment/12582611/HBASE-8516-94.patch
  against trunk revision .

    {color:green}+1 @author{color}.  The patch does not contain any @author 
tags.

    {color:red}-1 tests included{color}.  The patch doesn't appear to include 
any new or modified tests.
                        Please justify why no new tests are needed for this 
patch.
                        Also please list what manual steps were performed to 
verify this patch.

    {color:red}-1 patch{color}.  The patch command could not apply the patch.

Console output: 
https://builds.apache.org/job/PreCommit-HBASE-Build/5621//console

This message is automatically generated.
                
> 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.94.7, 0.95.0
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Trivial
>             Fix For: 0.98.0, 0.94.8, 0.95.2
>
>         Attachments: HBASE-8516-94.patch, HBASE-8516.patch, 
> HBASE-8516-v1.patch
>
>
> FSUtils.create() and SequenceFileLogWriter are using 
> 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

Reply via email to