[phoenix] branch master updated: PHOENIX-5351 Speedup OrphanViewToolIT.

2019-06-23 Thread larsh
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


The following commit(s) were added to refs/heads/master by this push:
 new 29e2977  PHOENIX-5351 Speedup OrphanViewToolIT.
29e2977 is described below

commit 29e297748b3599ca1c53ee38d0fc67b63de0d27c
Author: Lars Hofhansl 
AuthorDate: Sun Jun 23 22:07:37 2019 -0700

PHOENIX-5351 Speedup OrphanViewToolIT.
---
 .../org/apache/phoenix/end2end/OrphanViewToolIT.java   | 18 +-
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
index 7a05d27..32ec586 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
@@ -57,7 +57,6 @@ public class OrphanViewToolIT extends ParallelStatsDisabledIT 
{
 private static final Logger LOGGER = 
LoggerFactory.getLogger(OrphanViewToolIT.class);
 
 private final boolean isMultiTenant;
-private final boolean columnEncoded;
 
 private static final long fanout = 2;
 private static final long childCount = fanout;
@@ -118,16 +117,13 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 
 private static final String deleteSchemaRows = "DELETE FROM %s WHERE " + 
TABLE_SCHEM + " %s";
 
-public OrphanViewToolIT(boolean isMultiTenant, boolean columnEncoded) {
+public OrphanViewToolIT(boolean isMultiTenant) {
 this.isMultiTenant = isMultiTenant;
-this.columnEncoded = columnEncoded;
 }
 
-@Parameters(name="OrphanViewToolIT_multiTenant={0}, columnEncoded={1}") // 
name is used by failsafe as file name in reports
-public static Collection data() {
-return Arrays.asList(new Boolean[][] {
-{ false, false }, { false, true },
-{ true, false }, { true, true } });
+@Parameters(name="OrphanViewToolIT_multiTenant={0}") // name is used by 
failsafe as file name in reports
+public static Collection data() {
+return Arrays.asList(false, true);
 }
 
 @AfterClass
@@ -146,11 +142,6 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 
 private String generateDDL(String options, String format) {
 StringBuilder optionsBuilder = new StringBuilder(options);
-if (!columnEncoded) {
-if (optionsBuilder.length()!=0)
-optionsBuilder.append(",");
-optionsBuilder.append("COLUMN_ENCODED_BYTES=0");
-}
 if (isMultiTenant) {
 if (optionsBuilder.length()!=0)
 optionsBuilder.append(",");
@@ -216,6 +207,7 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 if (count != lineCount)
 LOGGER.debug(count + " != " + lineCount);
 assertTrue(count == lineCount);
+reader.close();
 }
 
 private void verifyCountQuery(Connection connection, String query, String 
schemaName, long count)



[phoenix] branch 4.x-HBase-1.4 updated: PHOENIX-5351 Speedup OrphanViewToolIT.

2019-06-23 Thread larsh
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 3ebf90c  PHOENIX-5351 Speedup OrphanViewToolIT.
3ebf90c is described below

commit 3ebf90cc69e8bccd2431eebfbedaf856920b96b4
Author: Lars Hofhansl 
AuthorDate: Sun Jun 23 22:07:10 2019 -0700

PHOENIX-5351 Speedup OrphanViewToolIT.
---
 .../org/apache/phoenix/end2end/OrphanViewToolIT.java   | 18 +-
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
index 7a05d27..32ec586 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
@@ -57,7 +57,6 @@ public class OrphanViewToolIT extends ParallelStatsDisabledIT 
{
 private static final Logger LOGGER = 
LoggerFactory.getLogger(OrphanViewToolIT.class);
 
 private final boolean isMultiTenant;
-private final boolean columnEncoded;
 
 private static final long fanout = 2;
 private static final long childCount = fanout;
@@ -118,16 +117,13 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 
 private static final String deleteSchemaRows = "DELETE FROM %s WHERE " + 
TABLE_SCHEM + " %s";
 
-public OrphanViewToolIT(boolean isMultiTenant, boolean columnEncoded) {
+public OrphanViewToolIT(boolean isMultiTenant) {
 this.isMultiTenant = isMultiTenant;
-this.columnEncoded = columnEncoded;
 }
 
-@Parameters(name="OrphanViewToolIT_multiTenant={0}, columnEncoded={1}") // 
name is used by failsafe as file name in reports
-public static Collection data() {
-return Arrays.asList(new Boolean[][] {
-{ false, false }, { false, true },
-{ true, false }, { true, true } });
+@Parameters(name="OrphanViewToolIT_multiTenant={0}") // name is used by 
failsafe as file name in reports
+public static Collection data() {
+return Arrays.asList(false, true);
 }
 
 @AfterClass
@@ -146,11 +142,6 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 
 private String generateDDL(String options, String format) {
 StringBuilder optionsBuilder = new StringBuilder(options);
-if (!columnEncoded) {
-if (optionsBuilder.length()!=0)
-optionsBuilder.append(",");
-optionsBuilder.append("COLUMN_ENCODED_BYTES=0");
-}
 if (isMultiTenant) {
 if (optionsBuilder.length()!=0)
 optionsBuilder.append(",");
@@ -216,6 +207,7 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 if (count != lineCount)
 LOGGER.debug(count + " != " + lineCount);
 assertTrue(count == lineCount);
+reader.close();
 }
 
 private void verifyCountQuery(Connection connection, String query, String 
schemaName, long count)



[phoenix] branch 4.x-HBase-1.5 updated: PHOENIX-5351 Speedup OrphanViewToolIT.

2019-06-23 Thread larsh
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


The following commit(s) were added to refs/heads/4.x-HBase-1.5 by this push:
 new 39586be  PHOENIX-5351 Speedup OrphanViewToolIT.
39586be is described below

commit 39586be4b57db316248ce9363d523969aabb3247
Author: Lars Hofhansl 
AuthorDate: Sun Jun 23 22:06:09 2019 -0700

PHOENIX-5351 Speedup OrphanViewToolIT.
---
 .../org/apache/phoenix/end2end/OrphanViewToolIT.java   | 18 +-
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
index 7a05d27..32ec586 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
@@ -57,7 +57,6 @@ public class OrphanViewToolIT extends ParallelStatsDisabledIT 
{
 private static final Logger LOGGER = 
LoggerFactory.getLogger(OrphanViewToolIT.class);
 
 private final boolean isMultiTenant;
-private final boolean columnEncoded;
 
 private static final long fanout = 2;
 private static final long childCount = fanout;
@@ -118,16 +117,13 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 
 private static final String deleteSchemaRows = "DELETE FROM %s WHERE " + 
TABLE_SCHEM + " %s";
 
-public OrphanViewToolIT(boolean isMultiTenant, boolean columnEncoded) {
+public OrphanViewToolIT(boolean isMultiTenant) {
 this.isMultiTenant = isMultiTenant;
-this.columnEncoded = columnEncoded;
 }
 
-@Parameters(name="OrphanViewToolIT_multiTenant={0}, columnEncoded={1}") // 
name is used by failsafe as file name in reports
-public static Collection data() {
-return Arrays.asList(new Boolean[][] {
-{ false, false }, { false, true },
-{ true, false }, { true, true } });
+@Parameters(name="OrphanViewToolIT_multiTenant={0}") // name is used by 
failsafe as file name in reports
+public static Collection data() {
+return Arrays.asList(false, true);
 }
 
 @AfterClass
@@ -146,11 +142,6 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 
 private String generateDDL(String options, String format) {
 StringBuilder optionsBuilder = new StringBuilder(options);
-if (!columnEncoded) {
-if (optionsBuilder.length()!=0)
-optionsBuilder.append(",");
-optionsBuilder.append("COLUMN_ENCODED_BYTES=0");
-}
 if (isMultiTenant) {
 if (optionsBuilder.length()!=0)
 optionsBuilder.append(",");
@@ -216,6 +207,7 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 if (count != lineCount)
 LOGGER.debug(count + " != " + lineCount);
 assertTrue(count == lineCount);
+reader.close();
 }
 
 private void verifyCountQuery(Connection connection, String query, String 
schemaName, long count)



[phoenix] branch 4.x-HBase-1.3 updated: PHOENIX-5351 Speedup OrphanViewToolIT.

2019-06-23 Thread larsh
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/4.x-HBase-1.3 by this push:
 new 72f4df4  PHOENIX-5351 Speedup OrphanViewToolIT.
72f4df4 is described below

commit 72f4df4d2a2b8635da2e18e25b1cb8bcb079096a
Author: Lars Hofhansl 
AuthorDate: Sun Jun 23 22:06:46 2019 -0700

PHOENIX-5351 Speedup OrphanViewToolIT.
---
 .../org/apache/phoenix/end2end/OrphanViewToolIT.java   | 18 +-
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
index 7a05d27..32ec586 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanViewToolIT.java
@@ -57,7 +57,6 @@ public class OrphanViewToolIT extends ParallelStatsDisabledIT 
{
 private static final Logger LOGGER = 
LoggerFactory.getLogger(OrphanViewToolIT.class);
 
 private final boolean isMultiTenant;
-private final boolean columnEncoded;
 
 private static final long fanout = 2;
 private static final long childCount = fanout;
@@ -118,16 +117,13 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 
 private static final String deleteSchemaRows = "DELETE FROM %s WHERE " + 
TABLE_SCHEM + " %s";
 
-public OrphanViewToolIT(boolean isMultiTenant, boolean columnEncoded) {
+public OrphanViewToolIT(boolean isMultiTenant) {
 this.isMultiTenant = isMultiTenant;
-this.columnEncoded = columnEncoded;
 }
 
-@Parameters(name="OrphanViewToolIT_multiTenant={0}, columnEncoded={1}") // 
name is used by failsafe as file name in reports
-public static Collection data() {
-return Arrays.asList(new Boolean[][] {
-{ false, false }, { false, true },
-{ true, false }, { true, true } });
+@Parameters(name="OrphanViewToolIT_multiTenant={0}") // name is used by 
failsafe as file name in reports
+public static Collection data() {
+return Arrays.asList(false, true);
 }
 
 @AfterClass
@@ -146,11 +142,6 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 
 private String generateDDL(String options, String format) {
 StringBuilder optionsBuilder = new StringBuilder(options);
-if (!columnEncoded) {
-if (optionsBuilder.length()!=0)
-optionsBuilder.append(",");
-optionsBuilder.append("COLUMN_ENCODED_BYTES=0");
-}
 if (isMultiTenant) {
 if (optionsBuilder.length()!=0)
 optionsBuilder.append(",");
@@ -216,6 +207,7 @@ public class OrphanViewToolIT extends 
ParallelStatsDisabledIT {
 if (count != lineCount)
 LOGGER.debug(count + " != " + lineCount);
 assertTrue(count == lineCount);
+reader.close();
 }
 
 private void verifyCountQuery(Connection connection, String query, String 
schemaName, long count)



Build failed in Jenkins: Phoenix-4.x-HBase-1.4 #191

2019-06-23 Thread Apache Jenkins Server
See 


Changes:

[larsh] PHOENIX-5365 IndexToolIT tests run multable times.

--
[...truncated 268.61 KB...]
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.7.5 from the shaded 
jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.7.5 
from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.7.5 
from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.7.5 from the shaded 
jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.7.5 from the 
shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.7.5 
from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-nodemanager:jar:2.7.5 
from the shaded jar.
[INFO] Including com.google.code.gson:gson:jar:2.2.4 in the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Including com.google.inject.extensions:guice-assistedinject:jar:3.0 in 
the shaded jar.
[INFO] Including org.apache.thrift:libthrift:jar:0.9.0 in the shaded jar.
[INFO] Including it.unimi.dsi:fastutil:jar:6.5.6 in the shaded jar.
[INFO] Including org.apache.twill:twill-common:jar:0.8.0 in the shaded jar.
[INFO] Including org.apache.twill:twill-core:jar:0.8.0 in the shaded jar.
[INFO] Including org.apache.twill:twill-api:jar:0.8.0 in the shaded jar.
[INFO] Excluding org.ow2.asm:asm-all:jar:5.0.2 from the shaded jar.
[INFO] Including org.apache.twill:twill-discovery-api:jar:0.8.0 in the shaded 
jar.
[INFO] Including org.apache.twill:twill-discovery-core:jar:0.8.0 in the shaded 
jar.
[INFO] Including org.apache.twill:twill-zookeeper:jar:0.8.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-core:jar:3.1.0 in the shaded jar.
[INFO] Replacing 

 with 

[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install-file (default-install) @ 
phoenix-server ---
[INFO] Installing 

 to 
/home/jenkins/.m2/repository/org/apache/phoenix/phoenix-server/4.15.0-HBase-1.4-SNAPSHOT/phoenix-server-4.15.0-HBase-1.4-SNAPSHOT.jar
[INFO] Installing 
 
to 
/home/jenkins/.m2/repository/org/apache/phoenix/phoenix-server/4.15.0-HBase-1.4-SNAPSHOT/phoenix-server-4.15.0-HBase-1.4-SNAPSHOT.pom
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ 
phoenix-server ---
[INFO] Skipping artifact installation
[INFO] 
[INFO] < org.apache.phoenix:phoenix-assembly >-
[INFO] Building Phoenix Assembly 4.15.0-HBase-1.4-SNAPSHOT[6/7]
[INFO] [ pom ]-
Downloading from central: 
https://repo.maven.apache.org/maven2/org/codehaus/mojo/exec-maven-plugin/maven-metadata.xml
Progress (1): 741 B   Downloaded from central: 
https://repo.maven.apache.org/maven2/org/codehaus/mojo/exec-maven-plugin/maven-metadata.xml
 (741 B at 9.6 kB/s)
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ phoenix-assembly ---
[INFO] Deleting 

[INFO] 
[INFO] --- maven-checkstyle-plugin:2.13:check (validate) @ phoenix-assembly ---
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ 
phoenix-assembly ---
[INFO] 
[INFO] --- exec-maven-plugin:1.6.0:exec (Symlink to deprecated client jar name) 
@ phoenix-assembly ---
'phoenix-4.15.0-HBase-1.4-SNAPSHOT-client.jar' -> 
'phoenix-client-4.15.0-HBase-1.4-SNAPSHOT.jar'
[INFO] 
[INFO] --- maven-source-plugin:2.2.1:jar-no-fork (attach-sources) @ 
phoenix-assembly ---
[INFO] Skipping source per configuration.
[INFO] 
[INFO] --- maven-jar-plugin:2.4:test-jar (default) @ phoenix-assembly ---
[INFO] Skipping packaging of the test-jar
[INFO] 
[INFO] --- maven-site-plugin:3.7.1:attach-descriptor (attach-descriptor) @ 
phoenix-assembly ---
[INFO] No site descriptor found: nothing to attach.
[INFO] 
[INFO] --- maven-assembly-plugin:2.5.2:single (package-to-tar) @ 
phoenix-assembly ---
[INFO] Reading assembly descriptor: src/build/package-to-tar-all.xml
[WARNING] Cannot include project artifact: 
org.apache.phoenix:phoenix-assembly:pom:4.15.0-HBase-1.4-SNAPSHOT; it doesn't 
have an associated file or directory.
[WARNING] Cannot include project 

Build failed in Jenkins: Phoenix-4.x-HBase-1.3 #444

2019-06-23 Thread Apache Jenkins Server
See 


Changes:

[larsh] PHOENIX-5365 IndexToolIT tests run multable times.

--
[...truncated 519.93 KB...]
[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 269.317 
s - in org.apache.phoenix.end2end.index.MutableIndexFailureWithNamespaceIT
[INFO] Running org.apache.phoenix.end2end.index.PhoenixMRJobSubmitterIT
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 26.322 s 
- in org.apache.phoenix.end2end.index.PhoenixMRJobSubmitterIT
[WARNING] Tests run: 45, Failures: 0, Errors: 0, Skipped: 18, Time elapsed: 
537.134 s - in org.apache.phoenix.end2end.index.ImmutableIndexIT
[INFO] Running org.apache.phoenix.end2end.index.txn.TxWriteFailureIT
[INFO] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 434.631 
s - in org.apache.phoenix.end2end.index.MutableIndexFailureIT
[INFO] Running org.apache.phoenix.end2end.join.HashJoinCacheIT
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 20.607 s 
- in org.apache.phoenix.end2end.join.HashJoinCacheIT
[INFO] Running org.apache.phoenix.end2end.join.SortMergeJoinNoSpoolingIT
[INFO] Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 140.656 
s - in org.apache.phoenix.end2end.index.txn.TxWriteFailureIT
[INFO] Running org.apache.phoenix.hbase.index.FailForUnsupportedHBaseVersionsIT
[INFO] Running org.apache.phoenix.execute.PartialCommitIT
[INFO] Running org.apache.phoenix.execute.UpsertSelectOverlappingBatchesIT
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 39.21 s 
- in org.apache.phoenix.hbase.index.FailForUnsupportedHBaseVersionsIT
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 87.245 s 
- in org.apache.phoenix.execute.UpsertSelectOverlappingBatchesIT
[INFO] Running org.apache.phoenix.iterate.RoundRobinResultIteratorWithStatsIT
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.09 s 
- in org.apache.phoenix.iterate.RoundRobinResultIteratorWithStatsIT
[INFO] Running org.apache.phoenix.iterate.ScannerLeaseRenewalIT
[INFO] Running org.apache.phoenix.jdbc.SecureUserConnectionsIT
[ERROR] Tests run: 12, Failures: 0, Errors: 6, Skipped: 0, Time elapsed: 
219.104 s <<< FAILURE! - in org.apache.phoenix.execute.PartialCommitIT
[ERROR] 
testOrderOfMutationsIsPredicatable[PartialCommitIT_transactionProvider=OMID](org.apache.phoenix.execute.PartialCommitIT)
  Time elapsed: 14.915 s  <<< ERROR!
org.apache.phoenix.exception.PhoenixIOException: java.lang.NullPointerException
at 
org.apache.phoenix.execute.PartialCommitIT.testPartialCommit(PartialCommitIT.java:258)
at 
org.apache.phoenix.execute.PartialCommitIT.testOrderOfMutationsIsPredicatable(PartialCommitIT.java:200)
Caused by: java.util.concurrent.ExecutionException: 
java.lang.NullPointerException
at 
org.apache.phoenix.execute.PartialCommitIT.testPartialCommit(PartialCommitIT.java:258)
at 
org.apache.phoenix.execute.PartialCommitIT.testOrderOfMutationsIsPredicatable(PartialCommitIT.java:200)
Caused by: java.lang.NullPointerException

[ERROR] 
testNoFailure[PartialCommitIT_transactionProvider=OMID](org.apache.phoenix.execute.PartialCommitIT)
  Time elapsed: 21.684 s  <<< ERROR!
java.lang.NullPointerException
at 
org.apache.phoenix.execute.PartialCommitIT.testPartialCommit(PartialCommitIT.java:258)
at 
org.apache.phoenix.execute.PartialCommitIT.testNoFailure(PartialCommitIT.java:153)

[ERROR] 
testDeleteFailure[PartialCommitIT_transactionProvider=OMID](org.apache.phoenix.execute.PartialCommitIT)
  Time elapsed: 17.681 s  <<< ERROR!
org.apache.phoenix.exception.PhoenixIOException: java.lang.NullPointerException
at 
org.apache.phoenix.execute.PartialCommitIT.testPartialCommit(PartialCommitIT.java:258)
at 
org.apache.phoenix.execute.PartialCommitIT.testDeleteFailure(PartialCommitIT.java:185)
Caused by: java.util.concurrent.ExecutionException: 
java.lang.NullPointerException
at 
org.apache.phoenix.execute.PartialCommitIT.testPartialCommit(PartialCommitIT.java:258)
at 
org.apache.phoenix.execute.PartialCommitIT.testDeleteFailure(PartialCommitIT.java:185)
Caused by: java.lang.NullPointerException

[ERROR] 
testUpsertSelectFailure[PartialCommitIT_transactionProvider=OMID](org.apache.phoenix.execute.PartialCommitIT)
  Time elapsed: 15.442 s  <<< ERROR!
org.apache.phoenix.exception.PhoenixIOException: java.lang.NullPointerException
at 
org.apache.phoenix.execute.PartialCommitIT.testPartialCommit(PartialCommitIT.java:232)
at 
org.apache.phoenix.execute.PartialCommitIT.testUpsertSelectFailure(PartialCommitIT.java:175)
Caused by: java.util.concurrent.ExecutionException: 
java.lang.NullPointerException
at 
org.apache.phoenix.execute.PartialCommitIT.testPartialCommit(PartialCommitIT.java:232)
at 

Build failed in Jenkins: Phoenix | Master #2426

2019-06-23 Thread Apache Jenkins Server
See 


Changes:

[larsh] PHOENIX-5365 IndexToolIT tests run multable times.

--
[...truncated 123.91 KB...]
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.856 s 
- in org.apache.phoenix.end2end.OrderByWithServerMemoryLimitIT
[INFO] Running org.apache.phoenix.end2end.OrderByWithSpillingIT
[INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 521.938 
s - in org.apache.phoenix.end2end.ConcurrentMutationsExtendedIT
[INFO] Running org.apache.phoenix.end2end.PartialResultServerConfigurationIT
[INFO] Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 579.548 
s - in org.apache.phoenix.end2end.CostBasedDecisionIT
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 56.996 s 
- in org.apache.phoenix.end2end.PartialResultServerConfigurationIT
[INFO] Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 229.294 
s - in org.apache.phoenix.end2end.OrderByWithServerClientSpoolingDisabledIT
[INFO] Running org.apache.phoenix.end2end.PermissionNSDisabledIT
[INFO] Running org.apache.phoenix.end2end.PermissionNSEnabledIT
[INFO] Running org.apache.phoenix.end2end.PermissionsCacheIT
[INFO] Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 281.873 
s - in org.apache.phoenix.end2end.OrderByWithSpillingIT
[INFO] Tests run: 88, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 487.072 
s - in org.apache.phoenix.end2end.IndexToolIT
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 436.916 
s - in org.apache.phoenix.end2end.LocalIndexSplitMergeIT
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 472.968 
s - in org.apache.phoenix.end2end.MigrateSystemTablesToSystemNamespaceIT
[INFO] Running org.apache.phoenix.end2end.PhoenixDriverIT
[INFO] Running org.apache.phoenix.end2end.QueryLoggerIT
[INFO] Running org.apache.phoenix.end2end.QueryTimeoutIT
[INFO] Running org.apache.phoenix.end2end.QueryWithLimitIT
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 10.335 s 
- in org.apache.phoenix.end2end.QueryTimeoutIT
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 9.402 s 
- in org.apache.phoenix.end2end.QueryWithLimitIT
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 96.988 s 
- in org.apache.phoenix.end2end.PhoenixDriverIT
[INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 64.575 s 
- in org.apache.phoenix.end2end.QueryLoggerIT
[INFO] Running org.apache.phoenix.end2end.RebuildIndexConnectionPropsIT
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.444 s 
- in org.apache.phoenix.end2end.RebuildIndexConnectionPropsIT
[INFO] Running org.apache.phoenix.end2end.RegexBulkLoadToolIT
[INFO] Running org.apache.phoenix.end2end.RenewLeaseIT
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 28.971 s 
- in org.apache.phoenix.end2end.RenewLeaseIT
[INFO] Running org.apache.phoenix.end2end.SequencePointInTimeIT
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.142 s 
- in org.apache.phoenix.end2end.SequencePointInTimeIT
[INFO] Running org.apache.phoenix.end2end.SystemCatalogCreationOnConnectionIT
[INFO] Running org.apache.phoenix.end2end.SpillableGroupByIT
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 20.942 s 
- in org.apache.phoenix.end2end.SpillableGroupByIT
[INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 114.1 s 
- in org.apache.phoenix.end2end.RegexBulkLoadToolIT
[INFO] Running org.apache.phoenix.end2end.StatsEnabledSplitSystemCatalogIT
[INFO] Running org.apache.phoenix.end2end.SystemCatalogIT
[INFO] Running org.apache.phoenix.end2end.TableSnapshotReadsMapReduceIT
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 52.542 s 
- in org.apache.phoenix.end2end.TableSnapshotReadsMapReduceIT
[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 591.776 
s - in org.apache.phoenix.end2end.PermissionNSDisabledIT
[INFO] Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 150.505 
s - in org.apache.phoenix.end2end.StatsEnabledSplitSystemCatalogIT
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 112.365 
s - in org.apache.phoenix.end2end.SystemCatalogIT
[INFO] Running org.apache.phoenix.end2end.UpdateCacheAcrossDifferentClientsIT
[INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 638.743 
s - in org.apache.phoenix.end2end.PermissionNSEnabledIT
[INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 620.823 
s - in org.apache.phoenix.end2end.PermissionsCacheIT
[INFO] Running org.apache.phoenix.end2end.UpgradeIT
[INFO] Running org.apache.phoenix.end2end.UserDefinedFunctionsIT
[INFO] Running org.apache.phoenix.end2end.index.GlobalIndexCheckerIT
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, 

Apache-Phoenix | 4.x-HBase-1.3 | Build Successful

2019-06-23 Thread Apache Jenkins Server
4.x-HBase-1.3 branch build status Successful

Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/4.x-HBase-1.3

Compiled Artifacts https://builds.apache.org/job/Phoenix-4.x-HBase-1.3/lastSuccessfulBuild/artifact/

Test Report https://builds.apache.org/job/Phoenix-4.x-HBase-1.3/lastCompletedBuild/testReport/

Changes
[larsh] PHOENIX-5365 IndexToolIT tests run multable times.



Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


[phoenix] branch master updated: PHOENIX-5365 IndexToolIT tests run multable times.

2019-06-23 Thread larsh
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


The following commit(s) were added to refs/heads/master by this push:
 new 100ff3a  PHOENIX-5365 IndexToolIT tests run multable times.
100ff3a is described below

commit 100ff3ac91e9975479bb35c1c1f2fecc06642669
Author: Lars Hofhansl 
AuthorDate: Sun Jun 23 14:09:48 2019 -0700

PHOENIX-5365 IndexToolIT tests run multable times.
---
 .../src/it/java/org/apache/phoenix/end2end/IndexToolIT.java | 6 ++
 1 file changed, 6 insertions(+)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
index 4605a4a..868ba35 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
@@ -76,6 +76,7 @@ import com.google.common.collect.Maps;
 public class IndexToolIT extends BaseUniqueNamesOwnClusterIT {
 
 private final boolean localIndex;
+private final boolean mutable;
 private final boolean transactional;
 private final boolean directApi;
 private final String tableDDLOptions;
@@ -85,6 +86,7 @@ public class IndexToolIT extends BaseUniqueNamesOwnClusterIT {
 public IndexToolIT(String transactionProvider, boolean mutable, boolean 
localIndex,
 boolean directApi, boolean useSnapshot, boolean useTenantId) {
 this.localIndex = localIndex;
+this.mutable = mutable;
 this.transactional = transactionProvider != null;
 this.directApi = directApi;
 this.useSnapshot = useSnapshot;
@@ -328,6 +330,8 @@ public class IndexToolIT extends 
BaseUniqueNamesOwnClusterIT {
 
 @Test
 public void testSaltedVariableLengthPK() throws Exception {
+if (!mutable) return;
+if (transactional) return;
 String schemaName = generateUniqueName();
 String dataTableName = generateUniqueName();
 String dataTableFullName = SchemaUtil.getTableName(schemaName, 
dataTableName);
@@ -372,6 +376,8 @@ public class IndexToolIT extends 
BaseUniqueNamesOwnClusterIT {
 @Test
 public void testSplitIndex() throws Exception {
 if (localIndex) return; // can't split local indexes
+if (!mutable) return;
+if (transactional) return;
 String schemaName = generateUniqueName();
 String dataTableName = generateUniqueName();
 String dataTableFullName = SchemaUtil.getTableName(schemaName, 
dataTableName);



[phoenix] branch 4.x-HBase-1.4 updated: PHOENIX-5365 IndexToolIT tests run multable times.

2019-06-23 Thread larsh
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 4503dd6  PHOENIX-5365 IndexToolIT tests run multable times.
4503dd6 is described below

commit 4503dd69a8edd5f26468ed8ac685f1e5cdcbdbef
Author: Lars Hofhansl 
AuthorDate: Sun Jun 23 14:09:07 2019 -0700

PHOENIX-5365 IndexToolIT tests run multable times.
---
 .../src/it/java/org/apache/phoenix/end2end/IndexToolIT.java | 6 ++
 1 file changed, 6 insertions(+)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
index 3b1dc51..c4bdf47 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
@@ -79,6 +79,7 @@ import com.google.common.collect.Maps;
 public class IndexToolIT extends BaseUniqueNamesOwnClusterIT {
 
 private final boolean localIndex;
+private final boolean mutable;
 private final boolean transactional;
 private final boolean directApi;
 private final String tableDDLOptions;
@@ -88,6 +89,7 @@ public class IndexToolIT extends BaseUniqueNamesOwnClusterIT {
 public IndexToolIT(String transactionProvider, boolean mutable, boolean 
localIndex,
 boolean directApi, boolean useSnapshot, boolean useTenantId) {
 this.localIndex = localIndex;
+this.mutable = mutable;
 this.transactional = transactionProvider != null;
 this.directApi = directApi;
 this.useSnapshot = useSnapshot;
@@ -330,6 +332,8 @@ public class IndexToolIT extends 
BaseUniqueNamesOwnClusterIT {
 
 @Test
 public void testSaltedVariableLengthPK() throws Exception {
+if (!mutable) return;
+if (transactional) return;
 String schemaName = generateUniqueName();
 String dataTableName = generateUniqueName();
 String dataTableFullName = SchemaUtil.getTableName(schemaName, 
dataTableName);
@@ -374,6 +378,8 @@ public class IndexToolIT extends 
BaseUniqueNamesOwnClusterIT {
 @Test
 public void testSplitIndex() throws Exception {
 if (localIndex) return; // can't split local indexes
+if (!mutable) return;
+if (transactional) return;
 String schemaName = generateUniqueName();
 String dataTableName = generateUniqueName();
 String dataTableFullName = SchemaUtil.getTableName(schemaName, 
dataTableName);



[phoenix] branch 4.x-HBase-1.3 updated: PHOENIX-5365 IndexToolIT tests run multable times.

2019-06-23 Thread larsh
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/4.x-HBase-1.3 by this push:
 new 25875ac  PHOENIX-5365 IndexToolIT tests run multable times.
25875ac is described below

commit 25875ac64fb09f805adbd622572a4f7a335662b2
Author: Lars Hofhansl 
AuthorDate: Sun Jun 23 14:08:27 2019 -0700

PHOENIX-5365 IndexToolIT tests run multable times.
---
 .../src/it/java/org/apache/phoenix/end2end/IndexToolIT.java | 6 ++
 1 file changed, 6 insertions(+)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
index d5f9204..f1728a0 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
@@ -80,6 +80,7 @@ import com.google.common.collect.Maps;
 public class IndexToolIT extends BaseUniqueNamesOwnClusterIT {
 
 private final boolean localIndex;
+private final boolean mutable;
 private final boolean transactional;
 private final boolean directApi;
 private final String tableDDLOptions;
@@ -89,6 +90,7 @@ public class IndexToolIT extends BaseUniqueNamesOwnClusterIT {
 public IndexToolIT(String transactionProvider, boolean mutable, boolean 
localIndex,
 boolean directApi, boolean useSnapshot, boolean useTenantId) {
 this.localIndex = localIndex;
+this.mutable = mutable;
 this.transactional = transactionProvider != null;
 this.directApi = directApi;
 this.useSnapshot = useSnapshot;
@@ -331,6 +333,8 @@ public class IndexToolIT extends 
BaseUniqueNamesOwnClusterIT {
 
 @Test
 public void testSaltedVariableLengthPK() throws Exception {
+if (!mutable) return;
+if (transactional) return;
 String schemaName = generateUniqueName();
 String dataTableName = generateUniqueName();
 String dataTableFullName = SchemaUtil.getTableName(schemaName, 
dataTableName);
@@ -375,6 +379,8 @@ public class IndexToolIT extends 
BaseUniqueNamesOwnClusterIT {
 @Test
 public void testSplitIndex() throws Exception {
 if (localIndex) return; // can't split local indexes
+if (!mutable) return;
+if (transactional) return;
 String schemaName = generateUniqueName();
 String dataTableName = generateUniqueName();
 String dataTableFullName = SchemaUtil.getTableName(schemaName, 
dataTableName);



[phoenix] branch 4.x-HBase-1.5 updated: PHOENIX-5365 IndexToolIT tests run multable times.

2019-06-23 Thread larsh
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


The following commit(s) were added to refs/heads/4.x-HBase-1.5 by this push:
 new c727321  PHOENIX-5365 IndexToolIT tests run multable times.
c727321 is described below

commit c727321857c0f111d1350802e0ed74a978409be5
Author: Lars Hofhansl 
AuthorDate: Sun Jun 23 14:05:58 2019 -0700

PHOENIX-5365 IndexToolIT tests run multable times.
---
 .../src/it/java/org/apache/phoenix/end2end/IndexToolIT.java | 6 ++
 1 file changed, 6 insertions(+)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
index 3b1dc51..c4bdf47 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
@@ -79,6 +79,7 @@ import com.google.common.collect.Maps;
 public class IndexToolIT extends BaseUniqueNamesOwnClusterIT {
 
 private final boolean localIndex;
+private final boolean mutable;
 private final boolean transactional;
 private final boolean directApi;
 private final String tableDDLOptions;
@@ -88,6 +89,7 @@ public class IndexToolIT extends BaseUniqueNamesOwnClusterIT {
 public IndexToolIT(String transactionProvider, boolean mutable, boolean 
localIndex,
 boolean directApi, boolean useSnapshot, boolean useTenantId) {
 this.localIndex = localIndex;
+this.mutable = mutable;
 this.transactional = transactionProvider != null;
 this.directApi = directApi;
 this.useSnapshot = useSnapshot;
@@ -330,6 +332,8 @@ public class IndexToolIT extends 
BaseUniqueNamesOwnClusterIT {
 
 @Test
 public void testSaltedVariableLengthPK() throws Exception {
+if (!mutable) return;
+if (transactional) return;
 String schemaName = generateUniqueName();
 String dataTableName = generateUniqueName();
 String dataTableFullName = SchemaUtil.getTableName(schemaName, 
dataTableName);
@@ -374,6 +378,8 @@ public class IndexToolIT extends 
BaseUniqueNamesOwnClusterIT {
 @Test
 public void testSplitIndex() throws Exception {
 if (localIndex) return; // can't split local indexes
+if (!mutable) return;
+if (transactional) return;
 String schemaName = generateUniqueName();
 String dataTableName = generateUniqueName();
 String dataTableFullName = SchemaUtil.getTableName(schemaName, 
dataTableName);



[phoenix-connectors] branch master updated: PHOENIX-5309 Skip adding log4j and slf4j to phoenix-hive jar to avoid logging in hive-server2.err file than hiveserver2.log(Rajeshbabu)

2019-06-23 Thread rajeshbabu
This is an automated email from the ASF dual-hosted git repository.

rajeshbabu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix-connectors.git


The following commit(s) were added to refs/heads/master by this push:
 new 9890de6  PHOENIX-5309 Skip adding log4j and slf4j to phoenix-hive jar 
to avoid logging in hive-server2.err file than hiveserver2.log(Rajeshbabu)
9890de6 is described below

commit 9890de6366f3f32af48df0122d49f94a878de146
Author: Rajeshbabu Chintaguntla 
AuthorDate: Sun Jun 23 22:41:03 2019 +0530

PHOENIX-5309 Skip adding log4j and slf4j to phoenix-hive jar to avoid 
logging in hive-server2.err file than hiveserver2.log(Rajeshbabu)
---
 phoenix-hive/pom.xml | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/phoenix-hive/pom.xml b/phoenix-hive/pom.xml
index 705ad34..8a95b44 100644
--- a/phoenix-hive/pom.xml
+++ b/phoenix-hive/pom.xml
@@ -36,6 +36,16 @@
 
   org.apache.phoenix
   phoenix-core
+  
+
+ log4j
+ log4j
+   
+
+  org.slf4j
+  slf4j-api
+   
+  
 
 
   org.apache.hive
@@ -55,6 +65,18 @@
   provided
 
 
+  org.slf4j
+  slf4j-api
+${slf4j.version}
+  provided
+
+
+  log4j
+  log4j
+ ${log4j.version}
+  provided
+
+
   org.apache.hadoop
   hadoop-mapreduce-client-core
 



Build failed in Jenkins: Phoenix Compile Compatibility with HBase #1037

2019-06-23 Thread Apache Jenkins Server
See 


--
Started by timer
[EnvInject] - Loading node environment variables.
Building remotely on H25 (ubuntu xenial) in workspace 

[Phoenix_Compile_Compat_wHBase] $ /bin/bash /tmp/jenkins9039792148101562064.sh
core file size  (blocks, -c) 0
data seg size   (kbytes, -d) unlimited
scheduling priority (-e) 0
file size   (blocks, -f) unlimited
pending signals (-i) 386407
max locked memory   (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files  (-n) 6
pipe size(512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority  (-r) 0
stack size  (kbytes, -s) 8192
cpu time   (seconds, -t) unlimited
max user processes  (-u) 10240
virtual memory  (kbytes, -v) unlimited
file locks  (-x) unlimited
core id : 0
core id : 1
core id : 2
core id : 3
core id : 4
core id : 5
physical id : 0
physical id : 1
MemTotal:   98957636 kB
MemFree:64985700 kB
Filesystem  Size  Used Avail Use% Mounted on
udev 48G 0   48G   0% /dev
tmpfs   9.5G  930M  8.6G  10% /run
/dev/sda3   3.6T  394G  3.1T  12% /
tmpfs48G 0   48G   0% /dev/shm
tmpfs   5.0M 0  5.0M   0% /run/lock
tmpfs48G 0   48G   0% /sys/fs/cgroup
/dev/sda2   473M  236M  213M  53% /boot
tmpfs   9.5G  4.0K  9.5G   1% /run/user/910
tmpfs   9.5G 0  9.5G   0% /run/user/1000
/dev/loop9   90M   90M 0 100% /snap/core/6673
/dev/loop8   90M   90M 0 100% /snap/core/6818
/dev/loop2   89M   89M 0 100% /snap/core/6964
/dev/loop11  57M   57M 0 100% /snap/snapcraft/3022
/dev/loop4   57M   57M 0 100% /snap/snapcraft/3059
/dev/loop1   55M   55M 0 100% /snap/lxd/10934
/dev/loop10  55M   55M 0 100% /snap/lxd/10972
tmpfs   9.5G 0  9.5G   0% /run/user/999
apache-maven-2.2.1
apache-maven-3.0.4
apache-maven-3.0.5
apache-maven-3.1.1
apache-maven-3.2.1
apache-maven-3.2.5
apache-maven-3.3.3
apache-maven-3.3.9
apache-maven-3.5.0
apache-maven-3.5.2
apache-maven-3.5.4
apache-maven-3.6.0
latest
latest2
latest3


===
Verifying compile level compatibility with HBase 0.98 with Phoenix 
4.x-HBase-0.98
===

Cloning into 'hbase'...
Switched to a new branch '0.98'
Branch 0.98 set up to track remote branch 0.98 from origin.
[ERROR] Plugin org.codehaus.mojo:findbugs-maven-plugin:2.5.2 or one of its 
dependencies could not be resolved: Failed to read artifact descriptor for 
org.codehaus.mojo:findbugs-maven-plugin:jar:2.5.2: Could not transfer artifact 
org.codehaus.mojo:findbugs-maven-plugin:pom:2.5.2 from/to central 
(https://repo.maven.apache.org/maven2): Received fatal alert: protocol_version 
-> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please 
read the following articles:
[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException
Build step 'Execute shell' marked build as failure