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/10/21 03:47:26 UTC

[Tajo Wiki] Trivial Update of "Configuration" by JinhoKim

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 JinhoKim:
https://wiki.apache.org/tajo/Configuration?action=diff&rev1=11&rev2=12

  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.
  
   * 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.class - If you want to change the persistent storage of the catalog server, specify the class name. Its default value is tajo.catalog.store.DerbyStore. In the current version, Tajo provides three persistent storage classes as follows:
  
-   * tajo.catalog.store.DBStore - this storage class uses Apache Derby.
+   * tajo.catalog.store.DerbyStore - this storage class uses Apache Derby.
+   * tajo.catalog.store.MySQLStore - this storage class uses MySQL.
    * tajo.catalog.store.MemStore - this is the in-memory storage. It is only used in unit tests to shorten the duration of unit tests.
  
  <<Anchor(DefaultPortNumbers)>>