You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tajo.apache.org by "Jinho Kim (JIRA)" <ji...@apache.org> on 2013/10/07 07:01:43 UTC

[jira] [Commented] (TAJO-179) Support MySQL CatalogStore and other db

    [ https://issues.apache.org/jira/browse/TAJO-179?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13787905#comment-13787905 ] 

Jinho Kim commented on TAJO-179:
--------------------------------

* If you use the mysql database, you should add a catalog-site.xml as follows :
* copy the mysql-connector.jar to \{TAJO-HOME\}/lib

{code:xml}
<configuration>
  <property>
    <name>tajo.catalog.store.class</name>
    <value>org.apache.tajo.catalog.store.MySQLStore</value>
  </property>

  <property>
    <name>tajo.catalog.jdbc.connection.id</name>
    <value>{id}</value>
  </property>
  <property>
    <name>tajo.catalog.jdbc.connection.password</name>
    <value>{password}</value>
  </property>
<property>
    <name>tajo.catalog.jdbc.uri</name>
    <value>jdbc:mysql://hostname:3306/tajo?createDatabaseIfNotExist=true</value>
  </property>
</configuration>
{code}


> Support MySQL CatalogStore and other db
> ---------------------------------------
>
>                 Key: TAJO-179
>                 URL: https://issues.apache.org/jira/browse/TAJO-179
>             Project: Tajo
>          Issue Type: New Feature
>          Components: catalog
>    Affects Versions: 0.2-incubating
>            Reporter: Byunghwa Yun
>            Assignee: Jinho Kim
>             Fix For: 0.2-incubating
>
>         Attachments: TAJO-179.patch
>
>
> Tajo only supports Derby.
> Tajo also support other DB(such as MySQL or Oracle) is very necessary.



--
This message was sent by Atlassian JIRA
(v6.1#6144)