/tags/release-0.2.0-rc0/conf/proto-hive-site.xml

# · XML · 106 lines · 74 code · 16 blank · 16 comment · 0 complexity · c58ba8784592f0ae0ab161af0d303f45 MD5 · raw file

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  3. <!--
  4. Licensed to the Apache Software Foundation (ASF) under one or more
  5. contributor license agreements. See the NOTICE file distributed with
  6. this work for additional information regarding copyright ownership.
  7. The ASF licenses this file to You under the Apache License, Version 2.0
  8. (the "License"); you may not use this file except in compliance with
  9. the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. -->
  17. <configuration>
  18. <property>
  19. <name>hive.metastore.local</name>
  20. <value>false</value>
  21. <description>controls whether to connect to remove metastore server or open a new metastore server in Hive Client JVM</description>
  22. </property>
  23. <property>
  24. <name>javax.jdo.option.ConnectionURL</name>
  25. <value>jdbc:mysql://DBHOSTNAME/hivemetastoredb?createDatabaseIfNotExist=true</value>
  26. <description>JDBC connect string for a JDBC metastore</description>
  27. </property>
  28. <property>
  29. <name>javax.jdo.option.ConnectionDriverName</name>
  30. <value>com.mysql.jdbc.Driver</value>
  31. <description>Driver class name for a JDBC metastore</description>
  32. </property>
  33. <property>
  34. <name>javax.jdo.option.ConnectionUserName</name>
  35. <value>hive</value>
  36. <description>username to use against metastore database</description>
  37. </property>
  38. <property>
  39. <name>javax.jdo.option.ConnectionPassword</name>
  40. <value>PASSWORD</value>
  41. <description>password to use against metastore database</description>
  42. </property>
  43. <property>
  44. <name>hive.metastore.warehouse.dir</name>
  45. <value>WAREHOUSE_DIR</value>
  46. <description>location of default database for the warehouse</description>
  47. </property>
  48. <property>
  49. <name>hive.metastore.sasl.enabled</name>
  50. <value>false</value>
  51. <description>If true, the metastore thrift interface will be secured with SASL. Clients must authenticate with Kerberos.</description>
  52. </property>
  53. <property>
  54. <name>hive.metastore.kerberos.keytab.file</name>
  55. <value>KEYTAB_PATH</value>
  56. <description>The path to the Kerberos Keytab file containing the metastore thrift server's service principal.</description>
  57. </property>
  58. <property>
  59. <name>hive.metastore.kerberos.principal</name>
  60. <value>KERBEROS_PRINCIPAL</value>
  61. <description>The service principal for the metastore thrift server. The special string _HOST will be replaced automatically with the correct host name.</description>
  62. </property>
  63. <property>
  64. <name>hive.metastore.cache.pinobjtypes</name>
  65. <value>Table,Database,Type,FieldSchema,Order</value>
  66. <description>List of comma separated metastore object types that should be pinned in the cache</description>
  67. </property>
  68. <property>
  69. <name>hive.metastore.uris</name>
  70. <value>thrift://SVRHOST:9933</value>
  71. <description>URI for client to contact metastore server</description>
  72. </property>
  73. <property>
  74. <name>hive.semantic.analyzer.factory.impl</name>
  75. <value>org.apache.hcatalog.cli.HCatSemanticAnalyzerFactory</value>
  76. <description>controls which SemanticAnalyzerFactory implemenation class is used by CLI</description>
  77. </property>
  78. <property>
  79. <name>hadoop.clientside.fs.operations</name>
  80. <value>true</value>
  81. <description>FS operations are owned by client</description>
  82. </property>
  83. <property>
  84. <name>hive.metastore.client.socket.timeout</name>
  85. <value>60</value>
  86. <description>MetaStore Client socket timeout in seconds</description>
  87. </property>
  88. </configuration>