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 A9DF0200B64 for ; Tue, 2 Aug 2016 11:03:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A8A4D160AAF; Tue, 2 Aug 2016 09:03:05 +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 21FAA160A8C for ; Tue, 2 Aug 2016 11:03:04 +0200 (CEST) Received: (qmail 465 invoked by uid 500); 2 Aug 2016 09:03:04 -0000 Mailing-List: contact commits-help@kylin.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kylin.apache.org Delivered-To: mailing list commits@kylin.apache.org Received: (qmail 450 invoked by uid 99); 2 Aug 2016 09:03:04 -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; Tue, 02 Aug 2016 09:03:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 333DDE5CE0; Tue, 2 Aug 2016 09:03:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mahongbin@apache.org To: commits@kylin.apache.org Date: Tue, 02 Aug 2016 09:03:05 -0000 Message-Id: <2ee17e51167042f5973691a2538cde7f@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/4] kylin git commit: KYLIN-1924 Region server metrics: replace int type for long type for scanned row count archived-at: Tue, 02 Aug 2016 09:03:05 -0000 http://git-wip-us.apache.org/repos/asf/kylin/blob/4fd7eb97/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/protobuf/CubeVisit.proto ---------------------------------------------------------------------- diff --git a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/protobuf/CubeVisit.proto b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/protobuf/CubeVisit.proto index 04e9c7a..e1de070 100644 --- a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/protobuf/CubeVisit.proto +++ b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/coprocessor/endpoint/protobuf/CubeVisit.proto @@ -47,8 +47,8 @@ message CubeVisitResponse { message Stats { optional int64 serviceStartTime = 1; optional int64 serviceEndTime = 2; - optional int32 scannedRowCount = 3; - optional int32 aggregatedRowCount = 4; + optional int64 scannedRowCount = 3; + optional int64 aggregatedRowCount = 4; optional double systemCpuLoad = 5; optional double freePhysicalMemorySize = 6; optional double freeSwapSpaceSize = 7;