You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2015/10/05 23:46:27 UTC

[jira] [Commented] (HBASE-14553) [0.98] Per column family DFS Replication doesn't work against hadoop-1

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

Ted Yu commented on HBASE-14553:
--------------------------------

Ran TestAdmin1 with the attached patch against hadoop-1 which passed.

> [0.98] Per column family DFS Replication doesn't work against hadoop-1
> ----------------------------------------------------------------------
>
>                 Key: HBASE-14553
>                 URL: https://issues.apache.org/jira/browse/HBASE-14553
>             Project: HBase
>          Issue Type: Bug
>    Affects Versions: 0.98.14
>            Reporter: Ted Yu
>            Assignee: Ted Yu
>         Attachments: 14553-0.98-v1.txt
>
>
> TestAdmin1#testHFileReplication has been failing against hadoop-1 since (at least) this build:
> https://builds.apache.org/job/HBase-0.98-on-Hadoop-1.1/1082/testReport/org.apache.hadoop.hbase.client/TestAdmin1/testHFileReplication/
> The cause is that the following method is absent in hadoop-1 (in FSUtils#create()):
> {code}
>           return (FSDataOutputStream) (DistributedFileSystem.class.getDeclaredMethod("create",
>             Path.class, FsPermission.class, boolean.class, int.class, short.class, long.class,
>             Progressable.class, InetSocketAddress[].class).invoke(backingFs, path, perm, true,
> {code}
> The following fallback doesn't take replication parameter:
> {code}
>     return create(fs, path, perm, true);
> {code}
> leading to DFS replication being 3 for the column family which should have DFS replication of 1



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)