Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9D8A3200C70 for ; Thu, 4 May 2017 17:51:28 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9C2A5160BC4; Thu, 4 May 2017 15:51:28 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E3087160B9F for ; Thu, 4 May 2017 17:51:27 +0200 (CEST) Received: (qmail 84747 invoked by uid 500); 4 May 2017 15:51:27 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 84737 invoked by uid 99); 4 May 2017 15:51:27 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 May 2017 15:51:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 00F64DFBC8; Thu, 4 May 2017 15:51:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: busbey@apache.org To: commits@hbase.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-17964 ensure hbase-metrics-api is included in mapreduce job classpaths Date: Thu, 4 May 2017 15:51:27 +0000 (UTC) archived-at: Thu, 04 May 2017 15:51:28 -0000 Repository: hbase Updated Branches: refs/heads/master 52119200b -> 0fb1fd120 HBASE-17964 ensure hbase-metrics-api is included in mapreduce job classpaths Signed-off-by: Andrew Purtell Signed-off-by: Nick Dimiduk Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/0fb1fd12 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/0fb1fd12 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/0fb1fd12 Branch: refs/heads/master Commit: 0fb1fd12005f5c51924aa67d114813be896b5cc1 Parents: 5211920 Author: Sean Busbey Authored: Wed Apr 26 11:55:05 2017 -0500 Committer: Sean Busbey Committed: Thu May 4 10:39:14 2017 -0500 ---------------------------------------------------------------------- .../java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/0fb1fd12/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java index e6a69ac..91550e7 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java @@ -787,6 +787,7 @@ public class TableMapReduceUtil { org.apache.hadoop.hbase.CompatibilityFactory.class, // hbase-hadoop-compat org.apache.hadoop.hbase.mapreduce.TableMapper.class, // hbase-server org.apache.hadoop.hbase.metrics.impl.FastLongHistogram.class, // hbase-metrics + org.apache.hadoop.hbase.metrics.Snapshot.class, // hbase-metrics-api prefixTreeCodecClass, // hbase-prefix-tree (if null will be skipped) // pull necessary dependencies org.apache.zookeeper.ZooKeeper.class,