From commits-return-7827-archive-asf-public=cust-asf.ponee.io@kudu.apache.org Thu Sep 19 03:51:08 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 5CCF4180634 for ; Thu, 19 Sep 2019 05:51:08 +0200 (CEST) Received: (qmail 6974 invoked by uid 500); 19 Sep 2019 03:51:06 -0000 Mailing-List: contact commits-help@kudu.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kudu.apache.org Delivered-To: mailing list commits@kudu.apache.org Received: (qmail 6934 invoked by uid 99); 19 Sep 2019 03:51:06 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Sep 2019 03:51:06 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id E2C6081D12; Thu, 19 Sep 2019 03:51:05 +0000 (UTC) Date: Thu, 19 Sep 2019 03:51:05 +0000 To: "commits@kudu.apache.org" Subject: [kudu] branch master updated: [tablet] Fix missing upsert metric MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156886506587.12643.3484857022165199398@gitbox.apache.org> From: adar@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: kudu X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 49308a199bfc39b080d8d65190fb63b2a287cb7b X-Git-Newrev: f5a69ca0871deaf9c0f0915addea53b5aacfa12b X-Git-Rev: f5a69ca0871deaf9c0f0915addea53b5aacfa12b X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. adar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git The following commit(s) were added to refs/heads/master by this push: new f5a69ca [tablet] Fix missing upsert metric f5a69ca is described below commit f5a69ca0871deaf9c0f0915addea53b5aacfa12b Author: lingbin AuthorDate: Thu Sep 19 10:43:00 2019 +0800 [tablet] Fix missing upsert metric Change-Id: I81af707e6d8a2806060107a3941dc3b17f6a2809 Reviewed-on: http://gerrit.cloudera.org:8080/14261 Tested-by: Kudu Jenkins Reviewed-by: Adar Dembo --- src/kudu/tablet/transactions/transaction.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/kudu/tablet/transactions/transaction.cc b/src/kudu/tablet/transactions/transaction.cc index 312c8b5..9f17ddc 100644 --- a/src/kudu/tablet/transactions/transaction.cc +++ b/src/kudu/tablet/transactions/transaction.cc @@ -80,6 +80,7 @@ TransactionMetrics::TransactionMetrics() void TransactionMetrics::Reset() { successful_inserts = 0; + successful_upserts = 0; successful_updates = 0; successful_deletes = 0; commit_wait_duration_usec = 0;