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:06:17 UTC

[phoenix] branch master updated (ecf9d82 -> 56e0f03)

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

larsh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git.


    from ecf9d82  PHOENIX-5348 increase batch size from 1 to 1000.
     new 3271111  PHOENIX-5348 Disable IndexRebuildTaskIT.
     new 56e0f03  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] 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 master
in repository https://gitbox.apache.org/repos/asf/phoenix.git

commit 56e0f0381fe30005f3cdd1718f99f3205e56d99e
Author: Lars Hofhansl <la...@apache.org>
AuthorDate: Mon Jun 17 17:06:39 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 {


[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 master
in repository https://gitbox.apache.org/repos/asf/phoenix.git

commit 327111127072ca9d1667ba2b0571c165d5c91ea7
Author: Lars Hofhansl <la...@apache.org>
AuthorDate: Mon Jun 17 17:06:32 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 04268df..c63cf2c 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
@@ -53,7 +53,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;