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 A55C2200CF3 for ; Wed, 19 Jul 2017 11:09:26 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A3E1B167D67; Wed, 19 Jul 2017 09:09:26 +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 DF152167D3C for ; Wed, 19 Jul 2017 11:09:25 +0200 (CEST) Received: (qmail 72240 invoked by uid 500); 19 Jul 2017 09:09:25 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 72005 invoked by uid 99); 19 Jul 2017 09:09:23 -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; Wed, 19 Jul 2017 09:09:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CD16CF5536; Wed, 19 Jul 2017 09:09:22 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Wed, 19 Jul 2017 09:09:32 -0000 Message-Id: <8080c416c3834a24a29ea2e6c9914194@git.apache.org> In-Reply-To: <205ddf4fbdb549c88dbcea684cf079b8@git.apache.org> References: <205ddf4fbdb549c88dbcea684cf079b8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [11/15] ignite git commit: Corrected benchmark output archived-at: Wed, 19 Jul 2017 09:09:26 -0000 Corrected benchmark output Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/b32800a0 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/b32800a0 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/b32800a0 Branch: refs/heads/master Commit: b32800a0ec573fb60b77bd00cb04578c5114233b Parents: e7ed26b Author: Alexey Goncharuk Authored: Fri Jul 14 20:17:15 2017 +0300 Committer: Alexey Goncharuk Committed: Fri Jul 14 20:17:44 2017 +0300 ---------------------------------------------------------------------- .../apache/ignite/yardstick/cache/IgnitePutTxLoadBenchmark.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/b32800a0/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxLoadBenchmark.java ---------------------------------------------------------------------- diff --git a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxLoadBenchmark.java b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxLoadBenchmark.java index 7ac7c3a..eb3abb2 100644 --- a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxLoadBenchmark.java +++ b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxLoadBenchmark.java @@ -84,13 +84,12 @@ public class IgnitePutTxLoadBenchmark extends IgniteCacheAbstractBenchmark args.getWarningTime()) - BenchmarkUtils.println("Transaction commit time = " + (tm.commitTime() - startTime)); + BenchmarkUtils.println("Transaction commit time = " + (endTime - startTime)); if (tm.txRollbacks() > 0 && args.printRollBacks()) BenchmarkUtils.println("Transaction rollbacks = " + tm.txRollbacks());