Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4F2E21725C for ; Tue, 6 Oct 2015 06:24:27 +0000 (UTC) Received: (qmail 39324 invoked by uid 500); 6 Oct 2015 06:24:27 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 39275 invoked by uid 500); 6 Oct 2015 06:24:27 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 39110 invoked by uid 99); 6 Oct 2015 06:24:26 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2015 06:24:26 +0000 Date: Tue, 6 Oct 2015 06:24:26 +0000 (UTC) From: "Hudson (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-14553) [0.98] Per column family DFS Replication doesn't work against hadoop-1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-14553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14944563#comment-14944563 ] Hudson commented on HBASE-14553: -------------------------------- SUCCESS: Integrated in HBase-0.98 #1144 (See [https://builds.apache.org/job/HBase-0.98/1144/]) HBASE-14553 [0.98] Per column family DFS Replication doesn't work (tedyu: rev 20ebd5b653c8534faf4ddb7d339637c1f0e43f04) * hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin1.java * hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java > [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 > Fix For: 0.98.16 > > 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)