phoenix git commit: [PHOENIX-3623] Integrate Omid with Phoenix.

2018-12-20 Thread ohads
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.4 494ed0769 -> 255379d2c


[PHOENIX-3623] Integrate Omid with Phoenix.

This commit finishes the integration of Omid as Phoenix transaction processor 
engine.
More information regarding the integration exists at [PHOENIX-3623] and at 
[OMID-82], which is the corresponding jira in Omid.


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

Branch: refs/heads/4.x-HBase-1.4
Commit: 255379d2c6bb264a1b0caa26c47ba943d1a099f6
Parents: 494ed07
Author: Ohad Shacham 
Authored: Thu Dec 20 14:22:27 2018 +0200
Committer: Ohad Shacham 
Committed: Thu Dec 20 14:22:27 2018 +0200

--
 bin/omid-env.sh |  43 
 bin/omid-server-configuration.yml   |  25 +++
 bin/omid.sh |  93 
 phoenix-assembly/pom.xml|   5 +
 .../components/all-common-dependencies.xml  |  28 +++
 phoenix-core/pom.xml|  46 
 .../phoenix/coprocessor/OmidGCProcessor.java|   6 +-
 .../coprocessor/OmidTransactionalProcessor.java |   7 +-
 .../transaction/OmidTransactionContext.java | 217 ++-
 .../transaction/OmidTransactionProvider.java| 106 -
 .../transaction/OmidTransactionTable.java   |  64 +-
 .../phoenix/transaction/TransactionFactory.java |   4 +-
 .../phoenix/query/QueryServicesTestImpl.java|   1 -
 .../java/org/apache/phoenix/util/TestUtil.java  |   2 +-
 phoenix-server/pom.xml  |   1 +
 pom.xml |  47 
 16 files changed, 665 insertions(+), 30 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/255379d2/bin/omid-env.sh
--
diff --git a/bin/omid-env.sh b/bin/omid-env.sh
new file mode 100644
index 000..820cdaa
--- /dev/null
+++ b/bin/omid-env.sh
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# Set the flags to pass to the jvm when running omid
+# export JVM_FLAGS=-Xmx8096m
+# 
-
+# Check if HADOOP_CONF_DIR and HBASE_CONF_DIR are set
+# 
-
+export JVM_FLAGS=-Xmx4096m
+if [ -z ${HADOOP_CONF_DIR+x} ]; then
+if [ -z ${HADOOP_HOME+x} ]; then
+echo "WARNING: HADOOP_HOME or HADOOP_CONF_DIR are unset";
+else
+export HADOOP_CONF_DIR=${HADOOP_HOME}/conf
+fi
+else
+echo "HADOOP_CONF_DIR is set to '$HADOOP_CONF_DIR'";
+fi
+
+if [ -z ${HBASE_CONF_DIR+x} ]; then
+if [ -z ${HBASE_HOME+x} ]; then
+echo "WARNING: HBASE_HOME or HBASE_CONF_DIR are unset";
+else
+export HBASE_CONF_DIR=${HBASE_HOME}/conf
+fi
+else
+echo "HBASE_CONF_DIR is set to '$HBASE_CONF_DIR'";
+fi

http://git-wip-us.apache.org/repos/asf/phoenix/blob/255379d2/bin/omid-server-configuration.yml
--
diff --git a/bin/omid-server-configuration.yml 
b/bin/omid-server-configuration.yml
new file mode 100644
index 000..8d1616e
--- /dev/null
+++ b/bin/omid-server-configuration.yml
@@ -0,0 +1,25 @@
+# 
=
+#
+# Omid TSO Server Configuration
+# 
-
+#
+# Tune here the default values for TSO server config parameters found in 
'default-omid-server-configuration.yml' file
+#
+# 
=
+
+
+timestampStoreModule: 

phoenix git commit: [PHOENIX-3623] Integrate Omid with Phoenix.

2018-12-20 Thread ohads
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.2 968ff97d2 -> e7ce8e815


[PHOENIX-3623] Integrate Omid with Phoenix.

This commit finishes the integration of Omid as Phoenix transaction processor 
engine.
More information regarding the integration exists at [PHOENIX-3623] and at 
[OMID-82], which is the corresponding jira in Omid.


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

Branch: refs/heads/4.x-HBase-1.2
Commit: e7ce8e815adeeb31d5f31c0beca6ffc81218b4f0
Parents: 968ff97
Author: Ohad Shacham 
Authored: Thu Dec 20 14:15:03 2018 +0200
Committer: Ohad Shacham 
Committed: Thu Dec 20 14:15:03 2018 +0200

--
 bin/omid-env.sh |  43 
 bin/omid-server-configuration.yml   |  25 +++
 bin/omid.sh |  93 
 phoenix-assembly/pom.xml|   5 +
 .../components/all-common-dependencies.xml  |  28 +++
 phoenix-core/pom.xml|  46 
 .../phoenix/coprocessor/OmidGCProcessor.java|   7 +-
 .../coprocessor/OmidTransactionalProcessor.java |   8 +-
 .../transaction/OmidTransactionContext.java | 217 ++-
 .../transaction/OmidTransactionProvider.java| 106 -
 .../transaction/OmidTransactionTable.java   |  64 +-
 .../phoenix/transaction/TransactionFactory.java |   5 +-
 .../phoenix/query/QueryServicesTestImpl.java|   1 -
 phoenix-server/pom.xml  |   1 +
 pom.xml |  47 
 15 files changed, 665 insertions(+), 31 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/e7ce8e81/bin/omid-env.sh
--
diff --git a/bin/omid-env.sh b/bin/omid-env.sh
new file mode 100644
index 000..820cdaa
--- /dev/null
+++ b/bin/omid-env.sh
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# Set the flags to pass to the jvm when running omid
+# export JVM_FLAGS=-Xmx8096m
+# 
-
+# Check if HADOOP_CONF_DIR and HBASE_CONF_DIR are set
+# 
-
+export JVM_FLAGS=-Xmx4096m
+if [ -z ${HADOOP_CONF_DIR+x} ]; then
+if [ -z ${HADOOP_HOME+x} ]; then
+echo "WARNING: HADOOP_HOME or HADOOP_CONF_DIR are unset";
+else
+export HADOOP_CONF_DIR=${HADOOP_HOME}/conf
+fi
+else
+echo "HADOOP_CONF_DIR is set to '$HADOOP_CONF_DIR'";
+fi
+
+if [ -z ${HBASE_CONF_DIR+x} ]; then
+if [ -z ${HBASE_HOME+x} ]; then
+echo "WARNING: HBASE_HOME or HBASE_CONF_DIR are unset";
+else
+export HBASE_CONF_DIR=${HBASE_HOME}/conf
+fi
+else
+echo "HBASE_CONF_DIR is set to '$HBASE_CONF_DIR'";
+fi

http://git-wip-us.apache.org/repos/asf/phoenix/blob/e7ce8e81/bin/omid-server-configuration.yml
--
diff --git a/bin/omid-server-configuration.yml 
b/bin/omid-server-configuration.yml
new file mode 100644
index 000..8d1616e
--- /dev/null
+++ b/bin/omid-server-configuration.yml
@@ -0,0 +1,25 @@
+# 
=
+#
+# Omid TSO Server Configuration
+# 
-
+#
+# Tune here the default values for TSO server config parameters found in 
'default-omid-server-configuration.yml' file
+#
+# 
=
+
+
+timestampStoreModule: 

phoenix git commit: [PHOENIX-3623] Integrate Omid with Phoenix.

2018-12-20 Thread ohads
Repository: phoenix
Updated Branches:
  refs/heads/master 85ab5d616 -> 412e07891


[PHOENIX-3623] Integrate Omid with Phoenix.

This commit finishes the integration of Omid as Phoenix transaction processor 
engine.
More information regarding the integration exists at [PHOENIX-3623] and at 
[OMID-82], which is the corresponding jira in Omid.


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

Branch: refs/heads/master
Commit: 412e078915c6a0a4c0b8f86a1ae7f22520f41824
Parents: 85ab5d6
Author: Ohad Shacham 
Authored: Thu Dec 20 13:53:09 2018 +0200
Committer: Ohad Shacham 
Committed: Thu Dec 20 13:53:09 2018 +0200

--
 bin/omid-env.sh |  43 
 bin/omid-server-configuration.yml   |  25 +++
 bin/omid.sh |  93 
 phoenix-assembly/pom.xml|   5 +
 .../components/all-common-dependencies.xml  |  28 +++
 phoenix-core/pom.xml|  46 
 .../phoenix/coprocessor/OmidGCProcessor.java|   6 +-
 .../coprocessor/OmidTransactionalProcessor.java |   7 +-
 .../transaction/OmidTransactionContext.java | 217 ++-
 .../transaction/OmidTransactionProvider.java| 106 -
 .../transaction/OmidTransactionTable.java   |  60 -
 .../phoenix/transaction/TransactionFactory.java |   5 +-
 .../phoenix/query/QueryServicesTestImpl.java|   1 -
 pom.xml |   1 +
 14 files changed, 615 insertions(+), 28 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/412e0789/bin/omid-env.sh
--
diff --git a/bin/omid-env.sh b/bin/omid-env.sh
new file mode 100644
index 000..820cdaa
--- /dev/null
+++ b/bin/omid-env.sh
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# Set the flags to pass to the jvm when running omid
+# export JVM_FLAGS=-Xmx8096m
+# 
-
+# Check if HADOOP_CONF_DIR and HBASE_CONF_DIR are set
+# 
-
+export JVM_FLAGS=-Xmx4096m
+if [ -z ${HADOOP_CONF_DIR+x} ]; then
+if [ -z ${HADOOP_HOME+x} ]; then
+echo "WARNING: HADOOP_HOME or HADOOP_CONF_DIR are unset";
+else
+export HADOOP_CONF_DIR=${HADOOP_HOME}/conf
+fi
+else
+echo "HADOOP_CONF_DIR is set to '$HADOOP_CONF_DIR'";
+fi
+
+if [ -z ${HBASE_CONF_DIR+x} ]; then
+if [ -z ${HBASE_HOME+x} ]; then
+echo "WARNING: HBASE_HOME or HBASE_CONF_DIR are unset";
+else
+export HBASE_CONF_DIR=${HBASE_HOME}/conf
+fi
+else
+echo "HBASE_CONF_DIR is set to '$HBASE_CONF_DIR'";
+fi

http://git-wip-us.apache.org/repos/asf/phoenix/blob/412e0789/bin/omid-server-configuration.yml
--
diff --git a/bin/omid-server-configuration.yml 
b/bin/omid-server-configuration.yml
new file mode 100644
index 000..8d1616e
--- /dev/null
+++ b/bin/omid-server-configuration.yml
@@ -0,0 +1,25 @@
+# 
=
+#
+# Omid TSO Server Configuration
+# 
-
+#
+# Tune here the default values for TSO server config parameters found in 
'default-omid-server-configuration.yml' file
+#
+# 
=
+
+
+timestampStoreModule: 
!!org.apache.omid.timestamp.storage.HBaseTimestampStorageModule [ ]
+commitTableStoreModule: 

phoenix git commit: [PHOENIX-3623] Integrate Omid with Phoenix.

2018-12-20 Thread ohads
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.3 4975f0b12 -> 850114334


[PHOENIX-3623] Integrate Omid with Phoenix.

This commit finishes the integration of Omid as Phoenix transaction processor 
engine.
More information regarding the integration exists at [PHOENIX-3623] and at 
[OMID-82], which is the corresponding jira in Omid.


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

Branch: refs/heads/4.x-HBase-1.3
Commit: 8501143345b291765fcd489fbfba7d4b6be24e01
Parents: 4975f0b
Author: Ohad Shacham 
Authored: Thu Dec 20 13:47:38 2018 +0200
Committer: Ohad Shacham 
Committed: Thu Dec 20 13:47:38 2018 +0200

--
 bin/omid-env.sh |  43 
 bin/omid-server-configuration.yml   |  25 +++
 bin/omid.sh |  93 
 phoenix-assembly/pom.xml|   5 +
 .../components/all-common-dependencies.xml  |  28 +++
 phoenix-core/pom.xml|  46 
 .../phoenix/coprocessor/OmidGCProcessor.java|   6 +-
 .../coprocessor/OmidTransactionalProcessor.java |   7 +-
 .../transaction/OmidTransactionContext.java | 217 ++-
 .../transaction/OmidTransactionProvider.java| 106 -
 .../transaction/OmidTransactionTable.java   |  64 +-
 .../phoenix/transaction/TransactionFactory.java |   4 +-
 .../phoenix/query/QueryServicesTestImpl.java|   1 -
 .../java/org/apache/phoenix/util/TestUtil.java  |   2 +-
 phoenix-server/pom.xml  |   1 +
 pom.xml |  47 
 16 files changed, 665 insertions(+), 30 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/85011433/bin/omid-env.sh
--
diff --git a/bin/omid-env.sh b/bin/omid-env.sh
new file mode 100644
index 000..820cdaa
--- /dev/null
+++ b/bin/omid-env.sh
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# Set the flags to pass to the jvm when running omid
+# export JVM_FLAGS=-Xmx8096m
+# 
-
+# Check if HADOOP_CONF_DIR and HBASE_CONF_DIR are set
+# 
-
+export JVM_FLAGS=-Xmx4096m
+if [ -z ${HADOOP_CONF_DIR+x} ]; then
+if [ -z ${HADOOP_HOME+x} ]; then
+echo "WARNING: HADOOP_HOME or HADOOP_CONF_DIR are unset";
+else
+export HADOOP_CONF_DIR=${HADOOP_HOME}/conf
+fi
+else
+echo "HADOOP_CONF_DIR is set to '$HADOOP_CONF_DIR'";
+fi
+
+if [ -z ${HBASE_CONF_DIR+x} ]; then
+if [ -z ${HBASE_HOME+x} ]; then
+echo "WARNING: HBASE_HOME or HBASE_CONF_DIR are unset";
+else
+export HBASE_CONF_DIR=${HBASE_HOME}/conf
+fi
+else
+echo "HBASE_CONF_DIR is set to '$HBASE_CONF_DIR'";
+fi

http://git-wip-us.apache.org/repos/asf/phoenix/blob/85011433/bin/omid-server-configuration.yml
--
diff --git a/bin/omid-server-configuration.yml 
b/bin/omid-server-configuration.yml
new file mode 100644
index 000..8d1616e
--- /dev/null
+++ b/bin/omid-server-configuration.yml
@@ -0,0 +1,25 @@
+# 
=
+#
+# Omid TSO Server Configuration
+# 
-
+#
+# Tune here the default values for TSO server config parameters found in 
'default-omid-server-configuration.yml' file
+#
+# 
=
+
+
+timestampStoreModule: 

[1/2] phoenix git commit: Update poms to support omid hbase versions

2018-10-23 Thread ohads
Repository: phoenix
Updated Branches:
  refs/heads/omid2 8e4590ed6 -> 688456889


Update poms to support omid hbase versions

Signed-off-by: Ohad Shacham 


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

Branch: refs/heads/omid2
Commit: 688456889e75f3dccd935568cf29a7c5dd3de5ce
Parents: 47bf31b
Author: Yonatan Gottesman 
Authored: Mon Oct 22 20:44:19 2018 +0300
Committer: Ohad Shacham 
Committed: Tue Oct 23 10:56:40 2018 +0300

--
 phoenix-core/pom.xml | 8 
 pom.xml  | 8 
 2 files changed, 8 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/68845688/phoenix-core/pom.xml
--
diff --git a/phoenix-core/pom.xml b/phoenix-core/pom.xml
index 0502a71..d70ed1a 100644
--- a/phoenix-core/pom.xml
+++ b/phoenix-core/pom.xml
@@ -206,7 +206,7 @@
   
   
 org.apache.omid
-omid-hbase-client
+omid-hbase-client-hbase1.3
 ${omid.version}
 
   
@@ -217,7 +217,7 @@
   
   
 org.apache.omid
-omid-hbase-coprocessor
+omid-hbase-coprocessor-hbase1.3
 ${omid.version}
 
   
@@ -228,7 +228,7 @@
   
   
 org.apache.omid
-omid-tso-server
+omid-tso-server-hbase1.3
 ${omid.version}
 
   
@@ -239,7 +239,7 @@
   
   
 org.apache.omid
-omid-tso-server
+omid-tso-server-hbase1.3
 ${omid.version}
 test-jar
 

http://git-wip-us.apache.org/repos/asf/phoenix/blob/68845688/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 6facc35..ca40753 100644
--- a/pom.xml
+++ b/pom.xml
@@ -816,7 +816,7 @@
   
   
 org.apache.omid
-omid-tso-server
+omid-tso-server-hbase1.3
 ${omid.version}
 
   
@@ -827,7 +827,7 @@
   
   
 org.apache.omid
-omid-hbase-client
+omid-hbase-client-hbase1.3
 ${omid.version}
 
   
@@ -838,7 +838,7 @@
   
   
 org.apache.omid
-omid-hbase-coprocessor
+omid-hbase-coprocessor-hbase1.3
 ${omid.version}
 
   
@@ -849,7 +849,7 @@
   
   
 org.apache.omid
-omid-tso-server
+omid-tso-server-hbase1.3
 ${omid.version}
 test-jar
 



[2/2] phoenix git commit: Omid lowLatency support bug fix

2018-10-23 Thread ohads
Omid lowLatency support bug fix

Signed-off-by: Ohad Shacham 


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

Branch: refs/heads/omid2
Commit: 47bf31b30b226367a9e5f95cecaa277531206981
Parents: 8e4590e
Author: Yonatan Gottesman 
Authored: Sun Oct 21 14:17:07 2018 +0300
Committer: Ohad Shacham 
Committed: Tue Oct 23 10:56:40 2018 +0300

--
 .../apache/phoenix/transaction/OmidTransactionProvider.java   | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/47bf31b3/phoenix-core/src/main/java/org/apache/phoenix/transaction/OmidTransactionProvider.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/transaction/OmidTransactionProvider.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/transaction/OmidTransactionProvider.java
index e81991a..610a5d1 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/transaction/OmidTransactionProvider.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/transaction/OmidTransactionProvider.java
@@ -55,6 +55,7 @@ public class OmidTransactionProvider implements 
PhoenixTransactionProvider {
 
 private HBaseTransactionManager transactionManager = null;
 private volatile CommitTable.Client commitTableClient = null;
+private CommitTable.Writer commitTableWriter = null;
 
 public static final OmidTransactionProvider getInstance() {
 return INSTANCE;
@@ -151,8 +152,10 @@ public class OmidTransactionProvider implements 
PhoenixTransactionProvider {
 
clientConf.setConflictAnalysisLevel(OmidClientConfiguration.ConflictDetectionLevel.ROW);
 clientConf.setHBaseConfiguration(config);
 commitTableClient = commitTable.getClient();
-
-transactionManager = 
HBaseTransactionManager.builder(clientConf).commitTableClient(commitTableClient)
+commitTableWriter = commitTable.getWriter();
+transactionManager = HBaseTransactionManager.builder(clientConf)
+.commitTableClient(commitTableClient)
+.commitTableWriter(commitTableWriter)
 .tsoClient(client).build();
 } catch (IOException | InterruptedException e) {
 throw new SQLExceptionInfo.Builder(



svn commit: r1833267 - in /phoenix/site: publish/ publish/language/ source/src/site/markdown/

2018-06-10 Thread ohads
Author: ohads
Date: Sun Jun 10 11:03:23 2018
New Revision: 1833267

URL: http://svn.apache.org/viewvc?rev=1833267=rev
Log:
Adding Ohad Shacham to Phoenix committer's list

Modified:
phoenix/site/publish/Phoenix-in-15-minutes-or-less.html
phoenix/site/publish/array_type.html
phoenix/site/publish/atomic_upsert.html
phoenix/site/publish/building.html
phoenix/site/publish/building_website.html
phoenix/site/publish/bulk_dataload.html
phoenix/site/publish/columnencoding.html
phoenix/site/publish/contributing.html
phoenix/site/publish/cursors.html
phoenix/site/publish/develop.html
phoenix/site/publish/download.html
phoenix/site/publish/dynamic_columns.html
phoenix/site/publish/explainplan.html
phoenix/site/publish/faq.html
phoenix/site/publish/flume.html
phoenix/site/publish/hive_storage_handler.html
phoenix/site/publish/index.html
phoenix/site/publish/installation.html
phoenix/site/publish/issues.html
phoenix/site/publish/joins.html
phoenix/site/publish/kafka.html
phoenix/site/publish/language/datatypes.html
phoenix/site/publish/language/functions.html
phoenix/site/publish/language/index.html
phoenix/site/publish/mailing_list.html
phoenix/site/publish/metrics.html
phoenix/site/publish/multi-tenancy.html
phoenix/site/publish/namspace_mapping.html
phoenix/site/publish/news.html
phoenix/site/publish/paged.html
phoenix/site/publish/performance.html
phoenix/site/publish/pherf.html
phoenix/site/publish/phoenix_mr.html
phoenix/site/publish/phoenix_on_emr.html
phoenix/site/publish/phoenix_orm.html
phoenix/site/publish/phoenix_python.html
phoenix/site/publish/phoenix_spark.html
phoenix/site/publish/phoenixcon.html
phoenix/site/publish/pig_integration.html
phoenix/site/publish/python.html
phoenix/site/publish/recent.html
phoenix/site/publish/release.html
phoenix/site/publish/release_notes.html
phoenix/site/publish/resources.html
phoenix/site/publish/roadmap.html
phoenix/site/publish/rowtimestamp.html
phoenix/site/publish/salted.html
phoenix/site/publish/secondary_indexing.html
phoenix/site/publish/sequences.html
phoenix/site/publish/server.html
phoenix/site/publish/skip_scan.html
phoenix/site/publish/source.html
phoenix/site/publish/subqueries.html
phoenix/site/publish/tablesample.html
phoenix/site/publish/team.html
phoenix/site/publish/tracing.html
phoenix/site/publish/transactions.html
phoenix/site/publish/tuning.html
phoenix/site/publish/tuning_guide.html
phoenix/site/publish/udf.html
phoenix/site/publish/update_statistics.html
phoenix/site/publish/upgrading.html
phoenix/site/publish/views.html
phoenix/site/publish/who_is_using.html
phoenix/site/source/src/site/markdown/team.md

Modified: phoenix/site/publish/Phoenix-in-15-minutes-or-less.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/Phoenix-in-15-minutes-or-less.html?rev=1833267=1833266=1833267=diff
==
--- phoenix/site/publish/Phoenix-in-15-minutes-or-less.html (original)
+++ phoenix/site/publish/Phoenix-in-15-minutes-or-less.html Sun Jun 10 11:03:23 
2018
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/array_type.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/array_type.html?rev=1833267=1833266=1833267=diff
==
--- phoenix/site/publish/array_type.html (original)
+++ phoenix/site/publish/array_type.html Sun Jun 10 11:03:23 2018
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/atomic_upsert.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/atomic_upsert.html?rev=1833267=1833266=1833267=diff
==
--- phoenix/site/publish/atomic_upsert.html (original)
+++ phoenix/site/publish/atomic_upsert.html Sun Jun 10 11:03:23 2018
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/building.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/building.html?rev=1833267=1833266=1833267=diff
==
--- phoenix/site/publish/building.html (original)
+++ phoenix/site/publish/building.html Sun Jun 10 11:03:23 2018
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/building_website.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/building_website.html?rev=1833267=1833266=1833267=diff
==
--- phoenix/site/publish/building_website.html (original)
+++ phoenix/site/publish/building_website.html Sun Jun 10 11:03:23 2018
@@ -1,7 +1,7 @@
 
 
 
 

Modified: phoenix/site/publish/bulk_dataload.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/bulk_dataload.html?rev=1833267=1833266