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/18 00:02:58 UTC

[phoenix] branch 4.x-HBase-1.5 updated (dd87435 -> 93f8879)

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

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


    from dd87435  PHOENIX-5348 IndexRebuildTaskIT, increase batch size from 1 to 1000.
     new 98c0e34  PHOENIX-5348 Disable IndexRebuildTaskIT.
     new 93f8879  PHOENIX-5354 OrderByWithSpillingIT should run in its own cluster.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/it/java/org/apache/phoenix/end2end/IndexRebuildTaskIT.java     | 3 ++-
 .../src/it/java/org/apache/phoenix/end2end/OrderByWithSpillingIT.java  | 2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)


[phoenix] 01/02: PHOENIX-5348 Disable IndexRebuildTaskIT.

Posted by la...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 98c0e34abf033811dae1dcb12656626d7c88b18f
Author: Lars Hofhansl <la...@apache.org>
AuthorDate: Mon Jun 17 17:01:59 2019 -0700

    PHOENIX-5348 Disable IndexRebuildTaskIT.
---
 .../src/it/java/org/apache/phoenix/end2end/IndexRebuildTaskIT.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexRebuildTaskIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexRebuildTaskIT.java
index 325a500..c4bcb30 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexRebuildTaskIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexRebuildTaskIT.java
@@ -51,7 +51,8 @@ import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertTrue;
 import static org.junit.Assert.fail;
 
-public class IndexRebuildTaskIT extends BaseUniqueNamesOwnClusterIT {
+// disabled -- see PHOENIX-5348
+public abstract class IndexRebuildTaskIT extends BaseUniqueNamesOwnClusterIT {
     protected static String TENANT1 = "tenant1";
     private static RegionCoprocessorEnvironment TaskRegionEnvironment;
 


[phoenix] 02/02: PHOENIX-5354 OrderByWithSpillingIT should run in its own cluster.

Posted by la...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 93f887911b5b6f98377b1144a046a6c29d1f8a54
Author: Lars Hofhansl <la...@apache.org>
AuthorDate: Mon Jun 17 17:02:43 2019 -0700

    PHOENIX-5354 OrderByWithSpillingIT should run in its own cluster.
---
 .../src/it/java/org/apache/phoenix/end2end/OrderByWithSpillingIT.java   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithSpillingIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithSpillingIT.java
index 80a5123..d3eb3f5 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithSpillingIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrderByWithSpillingIT.java
@@ -22,9 +22,11 @@ import java.util.Map;
 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;
 
+@Category(NeedsOwnMiniClusterTest.class)
 public class OrderByWithSpillingIT extends OrderByIT {
     @BeforeClass
     public static void doSetup() throws Exception {