Advertisement
Guest User

Untitled

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