Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.92 KB | None | 0 0
  1. <configuration>
  2.     <property>
  3.         <name>hive.metastore.schema.verification</name>
  4.         <value>false</value>
  5.     </property>
  6.     <property>
  7.         <name>hive.server2.enable.doAs</name>
  8.         <value>true</value>
  9.     </property>
  10.     <property>
  11.         <name>javax.jdo.option.ConnectionURL</name>
  12.         <value>jdbc:mysql://saurab:3306/metastore_db?createDatabaseIfNotExist=true</value>
  13.         <description>metadata is stored in a MySQL server</description>
  14.     </property>
  15.     <property>
  16.         <name>javax.jdo.option.ConnectionDriverName</name>
  17.         <value>com.mysql.jdbc.Driver</value>
  18.         <description>MySQL JDBC driver class</description>
  19.     </property>
  20.     <property>
  21.         <name>hive.aux.jars.path</name>
  22.         <value>/home/saurab/hadoopec/hive/lib/hive-serde-2.1.1.jar</value>
  23.     </property>
  24.     <property>
  25.         <name>spark.sql.warehouse.dir</name>
  26.         <value>hdfs://saurab:9000/user/hive/warehouse</value>
  27.     </property>
  28.     <property>
  29.         <name>hive.metastore.uris</name>
  30.         <!--Make sure that <value> points to the Hive Metastore URI in your cluster -->
  31.         <value>thrift://saurab:9083</value>
  32.         <description>URI for client to contact metastore server</description>
  33.     </property>
  34.     <property>
  35.         <name>hive.server2.thrift.port</name>
  36.         <value>10001</value>
  37.         <description>Port number of HiveServer2 Thrift interface.
  38.             Can be overridden by setting $HIVE_SERVER2_THRIFT_PORT
  39.         </description>
  40.     </property>
  41.     <property>
  42.         <name>javax.jdo.option.ConnectionUserName</name>
  43.         <value>saurabdahal</value>
  44.         <description>user name for connecting to mysql server</description>
  45.     </property>
  46.     <property>
  47.         <name>javax.jdo.option.ConnectionPassword</name>
  48.         <value>hivepassword</value>
  49.         <description>password for connecting to mysql server</description>
  50.     </property>
  51. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement