You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by Apache Wiki <wi...@apache.org> on 2013/09/09 07:15:00 UTC

[Tajo Wiki] Update of "Configuration" by HyunsikChoi

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tajo Wiki" for change notification.

The "Configuration" page has been changed by HyunsikChoi:
https://wiki.apache.org/tajo/Configuration?action=diff&rev1=1&rev2=2

Comment:
Updated

  == Setting up catalog-site.xml ==
  If you want to customize the catalog service, copy $TAJO_HOME/conf/catalog-site.xml.templete to catalog-site.xml. Then, add the following configs to catalog-site.xml. Note that the default configs are enough to launch Tajo cluster in most cases.
  
-  * catalog.master.addr - If you want to launch a catalog server separately, specify this address. This config has a form of hostname:port. Its default value is localhost:9002.
+  * tajo.catalog.master.addr - If you want to launch a catalog server separately, specify this address. This config has a form of hostname:port. Its default value is 0.0.0.0:9002.
   * tajo.catalog.store.class - If you want to change the persistent storage of the catalog server, specify the class name. Its default value is tajo.catalog.store.DBStore. In the current version, Tajo provides two persistent storage classes as follows:
  
    * tajo.catalog.store.DBStore - this storage class uses Apache Derby.
@@ -35, +35 @@

      <name>tajo.rootdir</name>
      <value>hdfs://hostname:port/tajo</value>
    </property>
- 
-   <property>
-     <name>tajo.cluster.distributed</name>
-     <value>true</value>
-   </property>
  }}}
  
   * tajo.rootdir - Specify the root directory of tajo. This parameter should be a url form (e.g., hdfs://namenode_hostname:port/path). You can also use file:// scheme.
- 
-  * tajo.cluster.distributed - It is a flag used internally. It must be true.
  
  The followings are other parameters. DO NOT modify the following configs unless you are an expert of Tajo.