<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> | |
<configuration> | |
<property> | |
<name>javax.jdo.option.ConnectionURL</name> | |
<value>jdbc:mysql://localhost/metastore_db?createDatabaseIfNotExist=true</value> | |
<description>metadata is stored in a MySQL server</description> | |
</property> | |
<property> | |
<name>javax.jdo.option.ConnectionDriverName</name> | |
<value>com.mysql.jdbc.Driver</value> | |
<description>MySQL JDBC driver class</description> | |
</property> | |
<property> | |
<name>javax.jdo.option.ConnectionUserName</name> | |
<value>hiveuser</value> | |
<description>user name for connecting to mysql server </description> | |
</property> | |
<property> | |
<name>javax.jdo.option.ConnectionPassword</name> | |
<value>hivepassword</value> | |
<description>password for connecting to mysql server </description> | |
</property> | |
<property> | |
<name>hive.metastore.uris</name> | |
<value>thrift://localhost:9083</value> | |
<description>Hive metastore Thrift server</description> | |
</property> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment