You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by la...@apache.org on 2019/06/22 06:26:18 UTC

[phoenix] branch 4.x-HBase-1.4 updated: PHOENIX-5364 Run OrderByWithServerClientSpoolingDisabledIT and OrderByWithServerMemoryLimitIT in their own mini cluster.

This is an automated email from the ASF dual-hosted git repository.

larsh pushed a commit to branch 4.x-HBase-1.4
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x-HBase-1.4 by this push:
     new 617b860  PHOENIX-5364 Run OrderByWithServerClientSpoolingDisabledIT and OrderByWithServerMemoryLimitIT in their own mini cluster.
617b860 is described below

commit 617b86011b5ef41d45bd0b9bded9b76919ca914a
Author: Lars Hofhansl <la...@apache.org>
AuthorDate: Fri Jun 21 23:26:43 2019 -0700

    PHOENIX-5364 Run OrderByWithServerClientSpoolingDisabledIT and OrderByWithServerMemoryLimitIT in their own mini cluster.
---
 .../phoenix/end2end/OrderByWithServerClientSpoolingDisabledIT.java      | 2 ++
 .../java/org/apache/phoenix/end2end/OrderByWithServerMemoryLimitIT.java | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithServerClientSpoolingDisabledIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithServerClientSpoolingDisabledIT.java
index caf515f..70a27bd 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithServerClientSpoolingDisabledIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithServerClientSpoolingDisabledIT.java
@@ -23,6 +23,7 @@ import org.apache.phoenix.iterate.SizeBoundQueue;
 import org.apache.phoenix.query.QueryServices;
 import org.apache.phoenix.util.ReadOnlyProps;
 import org.junit.BeforeClass;
+import org.junit.experimental.categories.Category;
 
 import com.google.common.collect.Maps;
 
@@ -30,6 +31,7 @@ import com.google.common.collect.Maps;
  * Same as the order by test but with spooling disabled both on the server and client. This will use
  * {@link SizeBoundQueue} for all its operations
  */
+@Category(NeedsOwnMiniClusterTest.class)
 public class OrderByWithServerClientSpoolingDisabledIT extends OrderByIT {
 
     @BeforeClass
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithServerMemoryLimitIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithServerMemoryLimitIT.java
index 2c66614..03f6e6e 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithServerMemoryLimitIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithServerMemoryLimitIT.java
@@ -29,9 +29,11 @@ import org.apache.phoenix.util.PropertiesUtil;
 import org.apache.phoenix.util.ReadOnlyProps;
 import org.junit.BeforeClass;
 import org.junit.Test;
+import org.junit.experimental.categories.Category;
 
 import com.google.common.collect.Maps;
 
+@Category(NeedsOwnMiniClusterTest.class)
 public class OrderByWithServerMemoryLimitIT extends BaseTest {
 
     @BeforeClass