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/ignite-5757 Commit: b32800a0ec573fb60b77bd00cb04578c5114233b Parents: e7ed26b Author: Alexey Goncharuk <[email protected]> Authored: Fri Jul 14 20:17:15 2017 +0300 Committer: Alexey Goncharuk <[email protected]> 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<Integ tx.commit(); endTime = System.currentTimeMillis(); - } TransactionMetrics tm = transactions.metrics(); if (endTime - startTime > 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());
