You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ja...@apache.org on 2016/11/05 18:06:13 UTC

[1/2] phoenix git commit: PHOENIX-3449 Ignore hanging IndexExtendedIT tests until they can be investigated

Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 7bcf5bac4 -> 291624f11


PHOENIX-3449 Ignore hanging IndexExtendedIT tests until they can be investigated


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

Branch: refs/heads/4.x-HBase-0.98
Commit: 0ec57748bee09fd17c76ddc4e0221a3e701cdd18
Parents: 7bcf5ba
Author: James Taylor <ja...@apache.org>
Authored: Sat Nov 5 11:04:33 2016 -0700
Committer: James Taylor <ja...@apache.org>
Committed: Sat Nov 5 11:04:33 2016 -0700

----------------------------------------------------------------------
 .../src/it/java/org/apache/phoenix/end2end/IndexExtendedIT.java  | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/0ec57748/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexExtendedIT.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexExtendedIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexExtendedIT.java
index bab1ae1..6195fa5 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexExtendedIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexExtendedIT.java
@@ -106,7 +106,9 @@ public class IndexExtendedIT extends BaseTest {
         Map<String, String> serverProps = Maps.newHashMapWithExpectedSize(2);
         serverProps.put(QueryServices.EXTRA_JDBC_ARGUMENTS_ATTRIB, QueryServicesOptions.DEFAULT_EXTRA_JDBC_ARGUMENTS);
         Map<String, String> clientProps = Maps.newHashMapWithExpectedSize(2);
+        /* Commenting out due to potential issue in PHOENIX-3448 and general flappiness
         clientProps.put(QueryServices.TRANSACTIONS_ENABLED, Boolean.TRUE.toString());
+        */
         clientProps.put(QueryServices.FORCE_ROW_KEY_ORDER_ATTRIB, Boolean.TRUE.toString());
         setUpTestDriver(new ReadOnlyProps(serverProps.entrySet().iterator()), new ReadOnlyProps(clientProps.entrySet()
                 .iterator()));
@@ -117,8 +119,10 @@ public class IndexExtendedIT extends BaseTest {
         return Arrays.asList(new Boolean[][] {     
                  { false, false, false, false }, { false, false, false, true }, { false, false, true, false }, { false, false, true, true }, 
                  { false, true, false, false }, { false, true, false, true }, { false, true, true, false }, { false, true, true, true }, 
+                 /* Commenting out due to potential issue in PHOENIX-3448 and general flappiness
                  { true, false, false, false }, { true, false, false, true }, { true, false, true, false }, { true, false, true, true }, 
                  { true, true, false, false }, { true, true, false, true }, { true, true, true, false }, { true, true, true, true } 
+                 */
            });
     }
     


[2/2] phoenix git commit: PHOENIX-3457 Adjust build settings in pom to improve consistency

Posted by ja...@apache.org.
PHOENIX-3457 Adjust build settings in pom to improve consistency


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

Branch: refs/heads/4.x-HBase-0.98
Commit: 291624f114e7ae91180df5a12d7fe6954358774e
Parents: 0ec5774
Author: James Taylor <ja...@apache.org>
Authored: Sat Nov 5 11:05:25 2016 -0700
Committer: James Taylor <ja...@apache.org>
Committed: Sat Nov 5 11:05:25 2016 -0700

----------------------------------------------------------------------
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/291624f1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7de9d82..5a2e542 100644
--- a/pom.xml
+++ b/pom.xml
@@ -117,8 +117,8 @@
     <maven.assembly.version>2.5.2</maven.assembly.version>
 
     <!-- Plugin options -->
-    <numForkedUT>4</numForkedUT>
-    <numForkedIT>4</numForkedIT>
+    <numForkedUT>6</numForkedUT>
+    <numForkedIT>6</numForkedIT>
 
     <!-- Set default encoding so multi-byte tests work correctly on the Mac -->
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>