Repository: tajo
Updated Branches:
  refs/heads/master b9719ba78 -> 015913b7a


TAJO-1320: HBaseStorageManager need to support Zookeeper Client Port. (missing 
file)


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

Branch: refs/heads/master
Commit: 015913b7a7eec922475a67d9455457f229367af7
Parents: b9719ba
Author: JaeHwa Jung <[email protected]>
Authored: Wed Jan 28 14:31:34 2015 +0900
Committer: JaeHwa Jung <[email protected]>
Committed: Wed Jan 28 14:31:34 2015 +0900

----------------------------------------------------------------------
 tajo-docs/src/main/sphinx/hbase_integration.rst | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/015913b7/tajo-docs/src/main/sphinx/hbase_integration.rst
----------------------------------------------------------------------
diff --git a/tajo-docs/src/main/sphinx/hbase_integration.rst 
b/tajo-docs/src/main/sphinx/hbase_integration.rst
index 73ef6d1..779223b 100644
--- a/tajo-docs/src/main/sphinx/hbase_integration.rst
+++ b/tajo-docs/src/main/sphinx/hbase_integration.rst
@@ -29,14 +29,16 @@ CREATE TABLE
   USING hbase
   WITH ('table'='<hbase_table_name>'
   , 'columns'=':key,<column_family_name>:<qualifier_name>, ...'
-  , 'hbase.zookeeper.quorum'='<zookeeper_address>')
+  , 'hbase.zookeeper.quorum'='<zookeeper_address>'
+  , 'hbase.zookeeper.property.clientPort'='<zookeeper_client_port>'
+  )
 
 Options
 
 * ``table`` : Set hbase origin table name. If you want to create an external 
table, the table must exists on HBase. The other way, if you want to create a 
managed table, the table must doesn't exist on HBase.
 * ``columns`` : :key means HBase row key. The number of columns entry need to 
equals to the number of Tajo table column
 * ``hbase.zookeeper.quorum`` : Set zookeeper quorum address. You can use 
different zookeeper cluster on the same Tajo database. If you don't set the 
zookeeper address, Tajo will refer the property of hbase-site.xml file.
-
+* ``hbase.zookeeper.property.clientPort`` : Set zookeeper client port. If you 
don't set the port, Tajo will refer the property of hbase-site.xml file.
 
 ``IF NOT EXISTS`` allows ``CREATE [EXTERNAL] TABLE`` statement to avoid an 
error which occurs when the table does not exist.
 

Reply via email to