Github user hyunsik commented on a diff in the pull request:
https://github.com/apache/tajo/pull/873#discussion_r45934286
--- Diff: tajo-docs/src/main/sphinx/configuration/storage-site-json.rst ---
@@ -0,0 +1,57 @@
+**************************
+The storage-site.json File
+**************************
+
+This file is for configuring :doc:`table
spaces</table_management/tablespaces>`.
+The syntax of ``storage-site.json`` is like this basically:
+
+.. code:: json
+
+ {
+ "spaces": {
+ <space config 1>, <space config 2>, ...
+ },
+ "storages": {
+ <storage config 1>, <storage config 2>, ...
+ }
+ }
+
+------
+Spaces
+------
+
+This is a section for registering table spaces. Some space config example
is here:
+
+.. code:: json
+
+ "spaces": {
+ "hbase_cluster1": {
+ "uri": "hbase://quorum1:port,quorum2:port/",
+ "config": { ... }
+ },
+ ...
+ }
+
+* **space name** : Your own table space name which indicates a specific
table space. Alpha-numeric characters and underscore(_) are permitted.
+* **uri** : An URI address of a table space
+* **config** : It is optional. You can specify it as JSON object to pass
to each table space handler.
--- End diff --
It should be ``configs`` instead of ``config``.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---