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 A7E1E200C8C for ; Mon, 22 May 2017 22:07:00 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A6268160BDC; Mon, 22 May 2017 20:07:00 +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 1E760160BD4 for ; Mon, 22 May 2017 22:06:59 +0200 (CEST) Received: (qmail 34769 invoked by uid 500); 22 May 2017 20:06:58 -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 34384 invoked by uid 99); 22 May 2017 20:06:57 -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; Mon, 22 May 2017 20:06:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C877EE968C; Mon, 22 May 2017 20:06:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@hbase.apache.org Date: Mon, 22 May 2017 20:07:09 -0000 Message-Id: In-Reply-To: <428120ab825e46b9a0cfe9887f1ef4ac@git.apache.org> References: <428120ab825e46b9a0cfe9887f1ef4ac@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [13/49] hbase git commit: HBASE-17000 Implement computation of online region sizes and report to the Master archived-at: Mon, 22 May 2017 20:07:00 -0000 HBASE-17000 Implement computation of online region sizes and report to the Master Includes a trivial implementation of the Master-side collection to avoid. Only enough to write a test to verify RS collection. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/6b334cd8 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/6b334cd8 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/6b334cd8 Branch: refs/heads/master Commit: 6b334cd817e37a3727160cc754187e8f40893ced Parents: f74e051 Author: Josh Elser Authored: Mon Nov 7 13:46:42 2016 -0500 Committer: Josh Elser Committed: Mon May 22 13:41:35 2017 -0400 ---------------------------------------------------------------------- .../generated/RegionServerStatusProtos.java | 2071 +++++++++++++++++- .../src/main/protobuf/RegionServerStatus.proto | 22 + .../hadoop/hbase/master/MasterRpcServices.java | 19 + .../quotas/FileSystemUtilizationChore.java | 205 ++ .../hadoop/hbase/quotas/MasterQuotaManager.java | 15 + .../hbase/regionserver/HRegionServer.java | 72 + .../quotas/TestFileSystemUtilizationChore.java | 357 +++ .../hadoop/hbase/quotas/TestRegionSizeUse.java | 194 ++ .../TestRegionServerRegionSpaceUseReport.java | 99 + 9 files changed, 3032 insertions(+), 22 deletions(-) ----------------------------------------------------------------------