You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by sa...@apache.org on 2015/04/28 21:06:08 UTC

phoenix git commit: PHOENIX-1822 PhoenixMetricsIT.testPhoenixMetricsForQueries() is flapping

Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 1729f5e5d -> aeb016abc


PHOENIX-1822 PhoenixMetricsIT.testPhoenixMetricsForQueries() is flapping


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/aeb016ab
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/aeb016ab
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/aeb016ab

Branch: refs/heads/4.x-HBase-0.98
Commit: aeb016abcf6c493a0533b764ff0a38f49eb022df
Parents: 1729f5e
Author: Samarth <sa...@salesforce.com>
Authored: Tue Apr 28 12:05:59 2015 -0700
Committer: Samarth <sa...@salesforce.com>
Committed: Tue Apr 28 12:05:59 2015 -0700

----------------------------------------------------------------------
 .../src/it/java/org/apache/phoenix/end2end/PhoenixMetricsIT.java | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/aeb016ab/phoenix-core/src/it/java/org/apache/phoenix/end2end/PhoenixMetricsIT.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/PhoenixMetricsIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/PhoenixMetricsIT.java
index 856480a..edb4042 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/PhoenixMetricsIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/PhoenixMetricsIT.java
@@ -29,8 +29,6 @@ import static org.apache.phoenix.monitoring.PhoenixMetrics.SizeMetric.MUTATION_C
 import static org.apache.phoenix.monitoring.PhoenixMetrics.SizeMetric.PARALLEL_SCANS;
 import static org.apache.phoenix.monitoring.PhoenixMetrics.SizeMetric.QUERY_TIME;
 import static org.apache.phoenix.monitoring.PhoenixMetrics.SizeMetric.SCAN_BYTES;
-import static org.apache.phoenix.monitoring.PhoenixMetrics.SizeMetric.TASK_END_TO_END_TIME;
-import static org.apache.phoenix.monitoring.PhoenixMetrics.SizeMetric.TASK_EXECUTION_TIME;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertTrue;
 
@@ -77,8 +75,6 @@ public class PhoenixMetricsIT extends BaseHBaseManagedTimeIT {
         
         assertTrue(SCAN_BYTES.getMetric().getTotalSum() > 0);
         assertTrue(QUERY_TIME.getMetric().getTotalSum() > 0);
-        assertTrue(TASK_END_TO_END_TIME.getMetric().getTotalSum() > 0);
-        assertTrue(TASK_EXECUTION_TIME.getMetric().getTotalSum() > 0);
     }
     
     @Test