标签:des style blog class code java
1 <property> 2 <name>javax.jdo.option.ConnectionURL</name> 3 <value>jdbc:mysql://10.0.0.2/metastore</value> 4 <description>JDBC connect string for a JDBC metastore</description> 5 </property> 6 7 <property> 8 <name>javax.jdo.option.ConnectionDriverName</name> 9 <value>com.mysql.jdbc.Driver</value> 10 <description>Driver class name for a JDBC metastore</description> 11 </property> 12 <property> 13 <name>javax.jdo.option.ConnectionUserName</name> 14 <value>hive</value> 15 </property> 16 <property> 17 <name>javax.jdo.option.ConnectionPassword</name> 18 <value>mypassword</value> 19 </property> 20 <property> 21 <name>datanucleus.autoCreateSchema</name> 22 <value>false</value> 23 </property> 24 <property> 25 <name>datanucleus.fixedDatastore</name> 26 <value>true</value> 27 </property> 28 <property> 29 <name>datanucleus.autoStartMechanism</name> 30 <value>SchemaTable</value> 31 </property> 32 <property> 33 <name>hive.metastore.uris</name> 34 <value>thrift://10.0.0.2:9083</value> 35 <description>IP address (or fully-qualified domain name) and port of the metastore host</description> 36 </property> 37 <property> 38 <name>hive.support.concurrency</name> 39 <description>Enable Hive‘s Table Lock Manager Service</description> 40 <value>true</value> 41 </property> 42 <property> 43 <name>hive.zookeeper.quorum</name> 44 <description>Zookeeper quorum used by Hive‘s Table Lock Manager</description> 45 <value>10.0.0.4,10.0.0.6,10.0.0.11</value> 46 </property> 47 <property> 48 <name>hive.zookeeper.client.port</name> 49 <value>2181</value> 50 <description>The port at which the clients will connect.</description> 51 </property> 52 <property> 53 <name>hive.server2.thrift.port</name> 54 <value>10001</value> 55 <description>TCP port number to listen on, default 10000</description> 56 </property> 57 <property> 58 <name>hive.aux.jars.path</name> 59 <value>file:////usr/lib/hbase/hbase.jar,file:///usr/lib/hive/lib/zookeeper.jar,file:///usr/lib/hive/lib/hive-hbase-handler-0.10.0-cdh4.6.0.jar,file:///usr/lib/hive/lib/guava-11.0.2.jar</value> 60 </property>
【原】Centos6.5下cdh4.6 hive安装部署,布布扣,bubuko.com
标签:des style blog class code java
原文地址:http://www.cnblogs.com/yuandianliws/p/3718187.html