Apache-Phoenix | 4.x | HBase 1.4 | Build #106 FAILURE

2020-11-17 Thread Apache Jenkins Server

4.x branch  HBase 1.4  build #106 status FAILURE
Build #106 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/4.x/106/


Apache-Phoenix | master | HBase 2.1 | Build #116 SUCCESS

2020-11-17 Thread Apache Jenkins Server

master branch  HBase 2.1  build #116 status SUCCESS
Build #116 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/116/


Apache-Phoenix | master | HBase 2.3 | Build #116 FAILURE

2020-11-17 Thread Apache Jenkins Server

master branch  HBase 2.3  build #116 status FAILURE
Build #116 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/116/


[phoenix] branch 4.x-PHOENIX-5923 updated: PHOENIX-6220 CREATE INDEX shouldn't ignore IMMUTABLE_STORAGE_SCHEME and COLUMN_ENDCODED_BYTES

2020-11-17 Thread gokcen
This is an automated email from the ASF dual-hosted git repository.

gokcen pushed a commit to branch 4.x-PHOENIX-5923
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x-PHOENIX-5923 by this push:
 new 9f5a0bf  PHOENIX-6220 CREATE INDEX shouldn't ignore 
IMMUTABLE_STORAGE_SCHEME and COLUMN_ENDCODED_BYTES
9f5a0bf is described below

commit 9f5a0bf75ea571ff629e9aaa3001d61cbfa37663
Author: Gokcen Iskender 
AuthorDate: Wed Nov 11 16:37:39 2020 -0800

PHOENIX-6220 CREATE INDEX shouldn't ignore IMMUTABLE_STORAGE_SCHEME and 
COLUMN_ENDCODED_BYTES

Signed-off-by: Gokcen Iskender 
---
 .../org/apache/phoenix/end2end/CreateTableIT.java  |  90 ++
 .../org/apache/phoenix/schema/MetaDataClient.java  | 104 +++--
 2 files changed, 166 insertions(+), 28 deletions(-)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CreateTableIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CreateTableIT.java
index 4f6ccab..0099668 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CreateTableIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CreateTableIT.java
@@ -622,6 +622,96 @@ public class CreateTableIT extends ParallelStatsDisabledIT 
{
 }
 }
 
+@Test
+public void testCreateIndexWithDifferentStorageAndEncoding() throws 
Exception {
+verifyIndexSchemeChange(false, false);
+verifyIndexSchemeChange(false, true);
+verifyIndexSchemeChange(true, false);
+verifyIndexSchemeChange(true, true);
+
+String tableName = generateUniqueName();
+String indexName = generateUniqueName();
+String createTableDDL = "create IMMUTABLE TABLE " + tableName + "(id 
char(1) NOT NULL, col1 char(1), col2 char(1) "
++ "CONSTRAINT NAME_PK PRIMARY KEY (id)) 
IMMUTABLE_STORAGE_SCHEME=SINGLE_CELL_ARRAY_WITH_OFFSETS";
+String createIndexDDL = "create INDEX " + indexName + " ON " + 
tableName + " (col1) INCLUDE (col2) 
IMMUTABLE_STORAGE_SCHEME=ONE_CELL_PER_COLUMN";
+
+Properties props = PropertiesUtil.deepCopy(TestUtil.TEST_PROPERTIES);
+try (Connection conn = DriverManager.getConnection(getUrl(), props)) {
+conn.createStatement().execute(createTableDDL);
+
assertColumnEncodingMetadata(QualifierEncodingScheme.TWO_BYTE_QUALIFIERS,
+ImmutableStorageScheme.SINGLE_CELL_ARRAY_WITH_OFFSETS, 
tableName, conn);
+
+boolean failed = false;
+try {
+conn.createStatement().execute(createIndexDDL);
+} catch (SQLException e) {
+assertEquals(e.getErrorCode(), 
SQLExceptionCode.INVALID_IMMUTABLE_STORAGE_SCHEME_CHANGE.getErrorCode());
+failed = true;
+}
+assertEquals(true, failed);
+}
+}
+
+private void verifyIndexSchemeChange(boolean immutable, boolean 
multiTenant) throws Exception{
+Properties props = PropertiesUtil.deepCopy(TestUtil.TEST_PROPERTIES);
+String nonEncodedOneCellPerColumnTable = generateUniqueName();
+String createTableDDL;
+String createIndexDDL;
+
+String createTableBaseDDL = "create " + (immutable? " IMMUTABLE ":"") 
+ " TABLE %s ("
++ " id char(1) NOT NULL," + " col1 integer NOT NULL,"
++ " col2 bigint NOT NULL,"
++ " CONSTRAINT NAME_PK PRIMARY KEY (id, col1, col2)) 
MULTI_TENANT=" + (multiTenant? "true,":"false,");
+
+String createIndexBaseDDL = "create index %s ON %s (col1) INCLUDE 
(col2) ";
+
+try (Connection conn = DriverManager.getConnection(getUrl(), props)) {
+createTableDDL = String.format(createTableBaseDDL, 
nonEncodedOneCellPerColumnTable);
+createTableDDL += "IMMUTABLE_STORAGE_SCHEME=ONE_CELL_PER_COLUMN, 
COLUMN_ENCODED_BYTES=0";
+conn.createStatement().execute(createTableDDL);
+
assertColumnEncodingMetadata(QualifierEncodingScheme.NON_ENCODED_QUALIFIERS,
+ImmutableStorageScheme.ONE_CELL_PER_COLUMN,
+nonEncodedOneCellPerColumnTable, conn);
+
+String idxName = "IDX_" + generateUniqueName();
+// Don't specify anything to see if it inherits from parent
+createIndexDDL = String.format(createIndexBaseDDL, idxName, 
nonEncodedOneCellPerColumnTable);
+conn.createStatement().execute(createIndexDDL);
+
assertColumnEncodingMetadata(QualifierEncodingScheme.NON_ENCODED_QUALIFIERS,
+ImmutableStorageScheme.ONE_CELL_PER_COLUMN,
+idxName, conn);
+
+idxName = "IDX_" + generateUniqueName();
+createIndexDDL = String.format(createIndexBaseDDL, idxName, 
nonEncodedOneCellPerColumnTable);
+createIndexDDL += 
"IMMUTABLE_STORAGE_SCHEME=SINGLE_CELL_ARRAY_WITH_OFFSETS";
+conn.createStatement().ex

Apache-Phoenix | 4.x | HBase 1.6 | Build #105 FAILURE

2020-11-17 Thread Apache Jenkins Server

4.x branch  HBase 1.6  build #105 status FAILURE
Build #105 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/4.x/105/


Apache-Phoenix | 4.x | HBase 1.4 | Build #105 FAILURE

2020-11-17 Thread Apache Jenkins Server

4.x branch  HBase 1.4  build #105 status FAILURE
Build #105 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/4.x/105/


Apache-Phoenix | 4.x | HBase 1.3 | Build #105 FAILURE

2020-11-17 Thread Apache Jenkins Server

4.x branch  HBase 1.3  build #105 status FAILURE
Build #105 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/4.x/105/


[phoenix] branch 4.x updated (e58b758 -> cd657db)

2020-11-17 Thread rajeshbabu
This is an automated email from the ASF dual-hosted git repository.

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


from e58b758  PHOENIX-6191: Creating a view which has its own new columns 
should also do checkAndPut checks on SYSTEM.MUTEX
 new 2169994  PHOENIX-6221 Getting CNF while creating transactional table 
with Omid(Rajeshbabu)
 new cd657db  fixing white spaces

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:
 phoenix-client-parent/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)



[phoenix] 01/02: PHOENIX-6221 Getting CNF while creating transactional table with Omid(Rajeshbabu)

2020-11-17 Thread rajeshbabu
This is an automated email from the ASF dual-hosted git repository.

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

commit 21699942f33f4ffbe6f1a40f170a2476c1f88016
Author: Rajeshbabu Chintaguntla 
AuthorDate: Sat Nov 14 02:34:07 2020 +0530

PHOENIX-6221 Getting CNF while creating transactional table with 
Omid(Rajeshbabu)
---
 phoenix-client-parent/pom.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/phoenix-client-parent/pom.xml b/phoenix-client-parent/pom.xml
index cabbf16..5b813ec 100644
--- a/phoenix-client-parent/pom.xml
+++ b/phoenix-client-parent/pom.xml
@@ -145,8 +145,9 @@
 
 org/apache/hbase/**
 
-org/apache/phoenix/**
-
+   org/apache/phoenix/**
+   org/apache/omid/**
+
   
 
 



[phoenix] 02/02: fixing white spaces

2020-11-17 Thread rajeshbabu
This is an automated email from the ASF dual-hosted git repository.

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

commit cd657db52357aa73aabc707f8617cf09d9125d66
Author: Rajeshbabu Chintaguntla 
AuthorDate: Sat Nov 14 04:00:24 2020 +0530

fixing white spaces
---
 phoenix-client-parent/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/phoenix-client-parent/pom.xml b/phoenix-client-parent/pom.xml
index 5b813ec..0217e8a 100644
--- a/phoenix-client-parent/pom.xml
+++ b/phoenix-client-parent/pom.xml
@@ -145,8 +145,8 @@
 
 org/apache/hbase/**
 
-   org/apache/phoenix/**
-   org/apache/omid/**
+org/apache/phoenix/**
+org/apache/omid/**
 
   
 



svn commit: r44540 - in /dev/phoenix/phoenix-omid-1.0.2RC0: ./ CHANGES.md RELEASENOTES.md phoenix-omid-1.0.2-src.tar.gz phoenix-omid-1.0.2-src.tar.gz.asc phoenix-omid-1.0.2-src.tar.gz.sha512

2020-11-17 Thread stoty
Author: stoty
Date: Tue Nov 17 14:14:08 2020
New Revision: 44540

Log:
Apache phoenix-omid 1.0.2RC0

Added:
dev/phoenix/phoenix-omid-1.0.2RC0/
dev/phoenix/phoenix-omid-1.0.2RC0/CHANGES.md
dev/phoenix/phoenix-omid-1.0.2RC0/RELEASENOTES.md
dev/phoenix/phoenix-omid-1.0.2RC0/phoenix-omid-1.0.2-src.tar.gz   (with 
props)
dev/phoenix/phoenix-omid-1.0.2RC0/phoenix-omid-1.0.2-src.tar.gz.asc
dev/phoenix/phoenix-omid-1.0.2RC0/phoenix-omid-1.0.2-src.tar.gz.sha512

Added: dev/phoenix/phoenix-omid-1.0.2RC0/CHANGES.md
==
--- dev/phoenix/phoenix-omid-1.0.2RC0/CHANGES.md (added)
+++ dev/phoenix/phoenix-omid-1.0.2RC0/CHANGES.md Tue Nov 17 14:14:08 2020
@@ -0,0 +1,56 @@
+
+
+# OMID Changelog
+
+## Release 1.0.2 - Unreleased (as of 2020-11-17)
+
+
+
+### IMPROVEMENTS:
+
+| JIRA | Summary | Priority | Component |
+|: |: | :--- |: |
+| [OMID-165](https://issues.apache.org/jira/browse/OMID-165) | Adopt Omid 
packaging to Phoenix standards |  Major | . |
+| [OMID-168](https://issues.apache.org/jira/browse/OMID-168) | cleanup the 
example code using HBase 0.x and yahoo imports |  Minor | . |
+| [OMID-120](https://issues.apache.org/jira/browse/OMID-120) | Utilize 
protobuf-maven-plugin for build |  Major | . |
+| [OMID-164](https://issues.apache.org/jira/browse/OMID-164) | Update 
phoenix-thirdparty dependency version to 1.0.0 |  Major | . |
+| [OMID-161](https://issues.apache.org/jira/browse/OMID-161) | Switch default 
timestampType to WORLD\_TIME |  Major | . |
+| [OMID-158](https://issues.apache.org/jira/browse/OMID-158) | Add OWASP 
dependency check, and update the flagged direct dependencies |  Major | . |
+| [OMID-156](https://issues.apache.org/jira/browse/OMID-156) | refactor Omid 
to use phoenix-shaded-guava |  Major | . |
+| [OMID-155](https://issues.apache.org/jira/browse/OMID-155) | disable 
trimStackTrace |  Major | . |
+
+
+### BUG FIXES:
+
+| JIRA | Summary | Priority | Component |
+|: |: | :--- |: |
+| [OMID-187](https://issues.apache.org/jira/browse/OMID-187) | Fix incorrect 
URL of source code |  Trivial | . |
+| [OMID-166](https://issues.apache.org/jira/browse/OMID-166) | 
AbstractTransactionManager.closeResources should be public |  Major | . |
+| [OMID-159](https://issues.apache.org/jira/browse/OMID-159) | Replace  
default hbase commit table and timestamp modules in server configurations as 
for the new package structure |  Major | . |
+| [OMID-157](https://issues.apache.org/jira/browse/OMID-157) | Multiple 
problems with Travis tests |  Major | . |
+
+
+### OTHER:
+
+| JIRA | Summary | Priority | Component |
+|: |: | :--- |: |
+| [OMID-162](https://issues.apache.org/jira/browse/OMID-162) | Remove 
org.mortbay.log.Log and add junit dependency |  Major | . |
+| [OMID-160](https://issues.apache.org/jira/browse/OMID-160) | Remove 
-incubating from assembly name |  Major | . |
+
+

Added: dev/phoenix/phoenix-omid-1.0.2RC0/RELEASENOTES.md
==
--- dev/phoenix/phoenix-omid-1.0.2RC0/RELEASENOTES.md (added)
+++ dev/phoenix/phoenix-omid-1.0.2RC0/RELEASENOTES.md Tue Nov 17 14:14:08 2020
@@ -0,0 +1,32 @@
+
+
+# OMID  1.0.2 Release Notes
+
+These release notes cover new developer and user-facing incompatibilities, 
important issues, features, and major improvements.
+
+
+---
+
+* [OMID-161](https://issues.apache.org/jira/browse/OMID-161) | *Major* | 
**Switch default timestampType to WORLD\_TIME**
+
+The default timestampType has been changed from INCREMENTAL to  WORLD\_TIME.
+To restore the 1.0.1 behaviour add the "timestampType: INCREMENTAL" line to 
omid-server-configuration.yml.
+
+
+

Added: dev/phoenix/phoenix-omid-1.0.2RC0/phoenix-omid-1.0.2-src.tar.gz
==
Binary file - no diff available.

Propchange: dev/phoenix/phoenix-omid-1.0.2RC0/phoenix-omid-1.0.2-src.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/phoenix/phoenix-omid-1.0.2RC0/phoenix-omid-1.0.2-src.tar.gz.asc
==
--- dev/phoenix/phoenix-omid-1.0.2RC0/phoenix-omid-1.0.2-src.tar.gz.asc (added)
+++ dev/phoenix/phoenix-omid-1.0.2RC0/phoenix-omid-1.0.2-src.tar.gz.asc Tue Nov 
17 14:14:08 2020
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+
+iQEzBAABCgAdFiEEglIDpwQFvIOuz199lzUcG3lEM8cFAl+z2qwACgkQlzUcG3lE
+M8ekPAf7B7CA7vg+tf2aBi+IbapxvpdBvAeF9wk9UShHmxYt1CeSp1Z1j7wKC/Uq
+NXgs2PJ/czhANuxe/L3lxX9Lty/0K15xm5Qt3sP7bppbhHCrPOvxofaa7PH133db
+ZEcND83B3NpPS5Zxk9q/CIJAMk2PZ9zbeZpZgQylQ4gTRHToTftfpX4wnehni6qA
+slA8DHtWchZBCPgleIewwd0UzkAiG97kfaXA3dG1SxmVyp7gc34XY+cqJarTy8eg
+H2+nScZaRjgITlP4XuZCpTAOEfeveU71/+gdD+l7i8BmWWtJz/52ZYK07h1Z6XAF
+xRV6/8sCneap/BMpF8QierG+OdHBUQ==
+=3fHh
+-END PGP SIGNATURE-

Added: dev/phoen

[phoenix-omid] 01/01: Preparing phoenix-omid release 1.0.2RC0; tagging and updates to CHANGES.md and RELEASENOTES.md

2020-11-17 Thread stoty
This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to tag 1.0.2RC0
in repository https://gitbox.apache.org/repos/asf/phoenix-omid.git

commit 831e488adcdf13218d5a6dce4965dac9d65dd522
Author: Istvan Toth 
AuthorDate: Tue Nov 17 14:13:01 2020 +

Preparing phoenix-omid release 1.0.2RC0; tagging and updates to CHANGES.md 
and RELEASENOTES.md
---
 CHANGES.md  | 56 +
 RELEASENOTES.md | 32 ++
 benchmarks/pom.xml  |  2 +-
 codahale-metrics/pom.xml|  2 +-
 commit-table/pom.xml|  2 +-
 common/pom.xml  |  2 +-
 examples/pom.xml|  2 +-
 hbase-client/pom.xml|  2 +-
 hbase-commit-table/pom.xml  |  2 +-
 hbase-common/pom.xml|  2 +-
 hbase-coprocessor/pom.xml   |  2 +-
 hbase-shims/hbase-1/pom.xml |  2 +-
 hbase-shims/hbase-2/pom.xml |  2 +-
 hbase-shims/pom.xml |  2 +-
 hbase-tools/pom.xml |  2 +-
 metrics/pom.xml |  2 +-
 pom.xml |  2 +-
 statemachine/pom.xml|  2 +-
 timestamp-storage/pom.xml   |  2 +-
 transaction-client/pom.xml  |  2 +-
 tso-server/pom.xml  |  2 +-
 21 files changed, 107 insertions(+), 19 deletions(-)

diff --git a/CHANGES.md b/CHANGES.md
new file mode 100644
index 000..3d78ce6
--- /dev/null
+++ b/CHANGES.md
@@ -0,0 +1,56 @@
+
+
+# OMID Changelog
+
+## Release 1.0.2 - Unreleased (as of 2020-11-17)
+
+
+
+### IMPROVEMENTS:
+
+| JIRA | Summary | Priority | Component |
+|: |: | :--- |: |
+| [OMID-165](https://issues.apache.org/jira/browse/OMID-165) | Adopt Omid 
packaging to Phoenix standards |  Major | . |
+| [OMID-168](https://issues.apache.org/jira/browse/OMID-168) | cleanup the 
example code using HBase 0.x and yahoo imports |  Minor | . |
+| [OMID-120](https://issues.apache.org/jira/browse/OMID-120) | Utilize 
protobuf-maven-plugin for build |  Major | . |
+| [OMID-164](https://issues.apache.org/jira/browse/OMID-164) | Update 
phoenix-thirdparty dependency version to 1.0.0 |  Major | . |
+| [OMID-161](https://issues.apache.org/jira/browse/OMID-161) | Switch default 
timestampType to WORLD\_TIME |  Major | . |
+| [OMID-158](https://issues.apache.org/jira/browse/OMID-158) | Add OWASP 
dependency check, and update the flagged direct dependencies |  Major | . |
+| [OMID-156](https://issues.apache.org/jira/browse/OMID-156) | refactor Omid 
to use phoenix-shaded-guava |  Major | . |
+| [OMID-155](https://issues.apache.org/jira/browse/OMID-155) | disable 
trimStackTrace |  Major | . |
+
+
+### BUG FIXES:
+
+| JIRA | Summary | Priority | Component |
+|: |: | :--- |: |
+| [OMID-187](https://issues.apache.org/jira/browse/OMID-187) | Fix incorrect 
URL of source code |  Trivial | . |
+| [OMID-166](https://issues.apache.org/jira/browse/OMID-166) | 
AbstractTransactionManager.closeResources should be public |  Major | . |
+| [OMID-159](https://issues.apache.org/jira/browse/OMID-159) | Replace  
default hbase commit table and timestamp modules in server configurations as 
for the new package structure |  Major | . |
+| [OMID-157](https://issues.apache.org/jira/browse/OMID-157) | Multiple 
problems with Travis tests |  Major | . |
+
+
+### OTHER:
+
+| JIRA | Summary | Priority | Component |
+|: |: | :--- |: |
+| [OMID-162](https://issues.apache.org/jira/browse/OMID-162) | Remove 
org.mortbay.log.Log and add junit dependency |  Major | . |
+| [OMID-160](https://issues.apache.org/jira/browse/OMID-160) | Remove 
-incubating from assembly name |  Major | . |
+
+
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
new file mode 100644
index 000..7962309
--- /dev/null
+++ b/RELEASENOTES.md
@@ -0,0 +1,32 @@
+
+
+# OMID  1.0.2 Release Notes
+
+These release notes cover new developer and user-facing incompatibilities, 
important issues, features, and major improvements.
+
+
+---
+
+* [OMID-161](https://issues.apache.org/jira/browse/OMID-161) | *Major* | 
**Switch default timestampType to WORLD\_TIME**
+
+The default timestampType has been changed from INCREMENTAL to  WORLD\_TIME.
+To restore the 1.0.1 behaviour add the "timestampType: INCREMENTAL" line to 
omid-server-configuration.yml.
+
+
+
diff --git a/benchmarks/pom.xml b/benchmarks/pom.xml
index 0e3be20..7740673 100644
--- a/benchmarks/pom.xml
+++ b/benchmarks/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2-SNAPSHOT
+1.0.2
 
 
 omid-benchmarks
diff --git a/codahale-metrics/pom.xml b/codahale-metrics/pom.xml
index 8ff64be..ea4b274 100644
--- a/codahale-metrics/pom.xml
+++ b/codahale-metrics/pom.xml
@@ -17,7 +17,7 @@
 
 omid
 org.apache.omid
-1.0.2-SNAPSHOT
+1.0.2
 
 
 4.0.0
diff --git a/commit-table/pom.xml b/commit-table/pom.xml
index a2a2fd3..3ab3e35 100644
--- a/commit-table/pom.xml
+++ b/commit-table/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 om

[phoenix-omid] 01/01: Preparing development version 1.0.3-SNAPSHOT

2020-11-17 Thread stoty
This is an automated email from the ASF dual-hosted git repository.

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

commit 5409b417d351f95db291d4f3d647e2e11ea3e67e
Author: Istvan Toth 
AuthorDate: Tue Nov 17 14:13:13 2020 +

Preparing development version 1.0.3-SNAPSHOT
---
 benchmarks/pom.xml  | 2 +-
 codahale-metrics/pom.xml| 2 +-
 commit-table/pom.xml| 2 +-
 common/pom.xml  | 2 +-
 examples/pom.xml| 2 +-
 hbase-client/pom.xml| 2 +-
 hbase-commit-table/pom.xml  | 2 +-
 hbase-common/pom.xml| 2 +-
 hbase-coprocessor/pom.xml   | 2 +-
 hbase-shims/hbase-1/pom.xml | 2 +-
 hbase-shims/hbase-2/pom.xml | 2 +-
 hbase-shims/pom.xml | 2 +-
 hbase-tools/pom.xml | 2 +-
 metrics/pom.xml | 2 +-
 pom.xml | 2 +-
 statemachine/pom.xml| 2 +-
 timestamp-storage/pom.xml   | 2 +-
 transaction-client/pom.xml  | 2 +-
 tso-server/pom.xml  | 2 +-
 19 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/benchmarks/pom.xml b/benchmarks/pom.xml
index 7740673..8d7ea0a 100644
--- a/benchmarks/pom.xml
+++ b/benchmarks/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-benchmarks
diff --git a/codahale-metrics/pom.xml b/codahale-metrics/pom.xml
index ea4b274..39b0076 100644
--- a/codahale-metrics/pom.xml
+++ b/codahale-metrics/pom.xml
@@ -17,7 +17,7 @@
 
 omid
 org.apache.omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 4.0.0
diff --git a/commit-table/pom.xml b/commit-table/pom.xml
index 3ab3e35..56240b0 100644
--- a/commit-table/pom.xml
+++ b/commit-table/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-commit-table
diff --git a/common/pom.xml b/common/pom.xml
index e2ae7dc..f298850 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-common
diff --git a/examples/pom.xml b/examples/pom.xml
index c2bb3d8..2753dd0 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -19,7 +19,7 @@
 
 omid
 org.apache.omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-examples
diff --git a/hbase-client/pom.xml b/hbase-client/pom.xml
index 617ed6b..38a3fff 100644
--- a/hbase-client/pom.xml
+++ b/hbase-client/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-hbase-client-${hbase.artifactId.suffix}
diff --git a/hbase-commit-table/pom.xml b/hbase-commit-table/pom.xml
index bb08ff9..d184554 100644
--- a/hbase-commit-table/pom.xml
+++ b/hbase-commit-table/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-hbase-commit-table-${hbase.artifactId.suffix}
diff --git a/hbase-common/pom.xml b/hbase-common/pom.xml
index 10c0426..ab458ec 100644
--- a/hbase-common/pom.xml
+++ b/hbase-common/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-hbase-common-${hbase.artifactId.suffix}
diff --git a/hbase-coprocessor/pom.xml b/hbase-coprocessor/pom.xml
index 080cb5f..1c82a75 100644
--- a/hbase-coprocessor/pom.xml
+++ b/hbase-coprocessor/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-hbase-coprocessor-${hbase.artifactId.suffix}
diff --git a/hbase-shims/hbase-1/pom.xml b/hbase-shims/hbase-1/pom.xml
index f04ddf4..6e23377 100644
--- a/hbase-shims/hbase-1/pom.xml
+++ b/hbase-shims/hbase-1/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid-shims-aggregator
-1.0.2
+1.0.3-SNAPSHOT
 
 
 ${shims1.artifactId}
diff --git a/hbase-shims/hbase-2/pom.xml b/hbase-shims/hbase-2/pom.xml
index 7bbee4f..d17cfae 100644
--- a/hbase-shims/hbase-2/pom.xml
+++ b/hbase-shims/hbase-2/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid-shims-aggregator
-1.0.2
+1.0.3-SNAPSHOT
 
 
 ${shims2.artifactId}
diff --git a/hbase-shims/pom.xml b/hbase-shims/pom.xml
index d9be85c..df5ea8e 100644
--- a/hbase-shims/pom.xml
+++ b/hbase-shims/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-shims-aggregator
diff --git a/hbase-tools/pom.xml b/hbase-tools/pom.xml
index 9f1c9a0..94f2b97 100644
--- a/hbase-tools/pom.xml
+++ b/hbase-tools/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.omid
 omid
-1.0.2
+1.0.3-SNAPSHOT
 
 
 omid-hbase-tools-${hbase.artifactId.suffix}
diff --git a/metrics/pom.xml b/metrics/pom.xml
index 42cf9b7..8491c7d 100644
--- a/metrics/pom.xml
+++ b/metrics/pom.xml
@@ -19,7 +1

[phoenix-omid] branch master updated (b554a69 -> 5409b41)

2020-11-17 Thread stoty
This is an automated email from the ASF dual-hosted git repository.

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


from b554a69  OMID-165 Adopt Omid packaging to Phoenix standards 
(addenudum: fix javadoc problems that cause build failure with the new plugin 
version)
 add 831e488  Preparing phoenix-omid release 1.0.2RC0; tagging and updates 
to CHANGES.md and RELEASENOTES.md
 new 5409b41  Preparing development version 1.0.3-SNAPSHOT

The 1 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:
 CHANGES.md| 56 +++
 tso-server/bin/omid-env.sh => RELEASENOTES.md | 25 +++-
 benchmarks/pom.xml|  2 +-
 codahale-metrics/pom.xml  |  2 +-
 commit-table/pom.xml  |  2 +-
 common/pom.xml|  2 +-
 examples/pom.xml  |  2 +-
 hbase-client/pom.xml  |  2 +-
 hbase-commit-table/pom.xml|  2 +-
 hbase-common/pom.xml  |  2 +-
 hbase-coprocessor/pom.xml |  2 +-
 hbase-shims/hbase-1/pom.xml   |  2 +-
 hbase-shims/hbase-2/pom.xml   |  2 +-
 hbase-shims/pom.xml   |  2 +-
 hbase-tools/pom.xml   |  2 +-
 metrics/pom.xml   |  2 +-
 pom.xml   |  2 +-
 statemachine/pom.xml  |  2 +-
 timestamp-storage/pom.xml |  2 +-
 transaction-client/pom.xml|  2 +-
 tso-server/pom.xml|  2 +-
 21 files changed, 90 insertions(+), 29 deletions(-)
 create mode 100644 CHANGES.md
 copy tso-server/bin/omid-env.sh => RELEASENOTES.md (51%)



[phoenix-omid] tag 1.0.2RC0 created (now 831e488)

2020-11-17 Thread stoty
This is an automated email from the ASF dual-hosted git repository.

stoty pushed a change to tag 1.0.2RC0
in repository https://gitbox.apache.org/repos/asf/phoenix-omid.git.


  at 831e488  (commit)
This tag includes the following new commits:

 new 831e488  Preparing phoenix-omid release 1.0.2RC0; tagging and updates 
to CHANGES.md and RELEASENOTES.md

The 1 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.




Apache-Phoenix | master | HBase 2.2 | Build #115 SUCCESS

2020-11-17 Thread Apache Jenkins Server

master branch  HBase 2.2  build #115 status SUCCESS
Build #115 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/115/


Apache-Phoenix | master | HBase 2.1 | Build #115 SUCCESS

2020-11-17 Thread Apache Jenkins Server

master branch  HBase 2.1  build #115 status SUCCESS
Build #115 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/115/


[phoenix-omid] branch master updated: OMID-165 Adopt Omid packaging to Phoenix standards (addenudum: fix javadoc problems that cause build failure with the new plugin version)

2020-11-17 Thread stoty
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new b554a69  OMID-165 Adopt Omid packaging to Phoenix standards 
(addenudum: fix javadoc problems that cause build failure with the new plugin 
version)
b554a69 is described below

commit b554a6944597be6b803d0a95fff291d4ebf84350
Author: Istvan Toth 
AuthorDate: Tue Nov 17 09:54:58 2020 +0100

OMID-165 Adopt Omid packaging to Phoenix standards (addenudum: fix javadoc 
problems that cause build failure with the new plugin version)
---
 hbase-client/src/main/java/org/apache/omid/transaction/TTable.java | 7 +++
 .../ipc/controller/InterRegionServerRpcControllerFactory.java  | 2 +-
 .../ipc/controller/InterRegionServerRpcControllerFactory.java  | 2 +-
 .../main/java/org/apache/omid/transaction/AbstractTransaction.java | 1 -
 4 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/hbase-client/src/main/java/org/apache/omid/transaction/TTable.java 
b/hbase-client/src/main/java/org/apache/omid/transaction/TTable.java
index 2e5925c..3311e48 100644
--- a/hbase-client/src/main/java/org/apache/omid/transaction/TTable.java
+++ b/hbase-client/src/main/java/org/apache/omid/transaction/TTable.java
@@ -359,7 +359,6 @@ public class TTable implements Closeable {
  * @param put an instance of Put
  * @param timestamp  timestamp to be used as cells version
  * @param commitTimestamp  timestamp to be used as commit timestamp
- * @throws IOException if a remote or network exception occurs.
  */
 static public Put markPutAsCommitted(Put put, long timestamp, long 
commitTimestamp) {
 final Put tsput = new Put(put.getRow(), timestamp);
@@ -606,7 +605,7 @@ public class TTable implements Closeable {
  *
  * @param transaction an instance of transaction to be used
  * @param putsList of puts
- * @param addShadowCell  denotes whether to add the shadow cell
+ * @param addShadowCells  denotes whether to add the shadow cell
  * @throws IOException if a remote or network exception occurs
  */
 public void put(Transaction transaction, List puts, boolean 
addShadowCells) throws IOException {
@@ -622,11 +621,11 @@ public class TTable implements Closeable {
 }
 
 /**
- * Transactional version of {@link Table#batch(List rows)}
+ * Transactional version of Table#batch(List rows)
  *
  * @param transaction an instance of transaction to be used
  * @param rowsList of rows that must be instances of Put or Delete
- * @param addShadowCell  denotes whether to add the shadow cell
+ * @param addShadowCells  denotes whether to add the shadow cell
  * @throws IOException if a remote or network exception occurs
  */
 public void batch(Transaction transaction, List rows, 
boolean addShadowCells) throws IOException {
diff --git 
a/hbase-shims/hbase-1/src/main/java/org/apache/hadoop/hbase/ipc/controller/InterRegionServerRpcControllerFactory.java
 
b/hbase-shims/hbase-1/src/main/java/org/apache/hadoop/hbase/ipc/controller/InterRegionServerRpcControllerFactory.java
index ed02abf..e6868e7 100644
--- 
a/hbase-shims/hbase-1/src/main/java/org/apache/hadoop/hbase/ipc/controller/InterRegionServerRpcControllerFactory.java
+++ 
b/hbase-shims/hbase-1/src/main/java/org/apache/hadoop/hbase/ipc/controller/InterRegionServerRpcControllerFactory.java
@@ -27,7 +27,7 @@ import org.apache.hadoop.hbase.ipc.RpcControllerFactory;
 
 /**
  * {@link RpcControllerFactory} that should only be used when making remote 
RPCs to the region
- * servers. This prevents deadlocks by having RS->RS traffic handled by higher 
priorities
+ * servers. This prevents deadlocks by having RS to RS traffic handled by 
higher priorities
  * queues. This controller factory shouldn't be globally configured anywhere 
and is meant to be
  * used only internally by Omid.
  */
diff --git 
a/hbase-shims/hbase-2/src/main/java/org/apache/hadoop/hbase/ipc/controller/InterRegionServerRpcControllerFactory.java
 
b/hbase-shims/hbase-2/src/main/java/org/apache/hadoop/hbase/ipc/controller/InterRegionServerRpcControllerFactory.java
index 90c5990..6001b29 100644
--- 
a/hbase-shims/hbase-2/src/main/java/org/apache/hadoop/hbase/ipc/controller/InterRegionServerRpcControllerFactory.java
+++ 
b/hbase-shims/hbase-2/src/main/java/org/apache/hadoop/hbase/ipc/controller/InterRegionServerRpcControllerFactory.java
@@ -27,7 +27,7 @@ import org.apache.hadoop.hbase.ipc.RpcControllerFactory;
 
 /**
  * {@link RpcControllerFactory} that should only be used when making remote 
RPCs to the region
- * servers. This prevents deadlocks by having RS->RS traffic handled by higher 
priorities
+ * servers. This prevents deadlocks by having RS to RS traffic handled by 
higher priorities
  * queues. This controller factory shouldn't be globally configu

Apache-Phoenix | master | HBase 2.3 | Build #115 FAILURE

2020-11-17 Thread Apache Jenkins Server

master branch  HBase 2.3  build #115 status FAILURE
Build #115 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/115/