mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 00:21:56 +00:00
31 lines
993 B
XML
31 lines
993 B
XML
<configuration>
|
|
<property>
|
|
<name>javax.jdo.option.ConnectionURL</name>
|
|
<value>jdbc:mysql://mysql:3306/hive?createDatabaseIfNotExist=true&useSSL=false</value>
|
|
<description>JDBC connect string for a JDBC metastore</description>
|
|
</property>
|
|
<property>
|
|
<name>javax.jdo.option.ConnectionDriverName</name>
|
|
<value>com.mysql.jdbc.Driver</value>
|
|
<description>Driver class name for a JDBC metastore</description>
|
|
</property>
|
|
<property>
|
|
<name>javax.jdo.option.ConnectionUserName</name>
|
|
<value>root</value>
|
|
<description>username to use against metastore database</description>
|
|
</property>
|
|
<property>
|
|
<name>javax.jdo.option.ConnectionPassword</name>
|
|
<value>123456</value>
|
|
<description>password to use against metastore database</description>
|
|
</property>
|
|
<property>
|
|
<name>hive.metastore.uris</name>
|
|
<value>thrift://localhost:9083</value>
|
|
</property>
|
|
<property>
|
|
<name>hive.metastore.schema.verification</name>
|
|
<value>false</value>
|
|
</property>
|
|
</configuration>
|