2.4-2.5、Hive整合(整合Spark、整合Hbase)、连接方式Cli、HiveServer和hivemetastore、Squirrel SQL Client等
2.4其它整合
2.4.1Hive整合Spark
Spark整合hive,需要將hive_home下的conf下的hive_site.xml放到spark_home下的conf目錄下。(3臺服務(wù)器都做相同的配置) [root@bigdata2 spark-2.3.0-bin-hadoop2.7]# cd $HIVE_HOME/conf [root@bigdata2 conf]# cp hive-site.xml $SPARK_HOME/conf如果想使用./spark-sql 以yarn的方式運(yùn)行,需要將mysql-connector-java-5.1.38.jar 放到$SPARK_HOME/jars下面
2.4.2 Hive整合HBASE
(1)修改hive-site.xml文件,添加配置屬性(zookeeper的地址)
<property><name>hbase.zookeeper.quorum</name> <value>bigdata2:2181,bigdata3:2181,bigdata4:2181,bigdata5:2181,bigdata6:2181</value> </property>(2)引入hbase的依賴包
將hbase安裝包目錄下的lib文件夾下的包導(dǎo)入到hive的環(huán)境變量中
在hive-env.sh文件中添加:
將上面的配置同步到另外2臺機(jī)器中
2.5連接方式
2.5.1Cli連接
2.5.2HiveServer2/beeline
關(guān)于beeline的更多使用,可以參考:https://cwiki.apache.org/confluence/display/Hive/HiveServer2+Clients (里面介紹了更加詳細(xì)的hiveserver2/beeline的配置)
2.5.2.1修改hadoop集群的core-site.xml中的如下配置
<property><name>hadoop.proxyuser.root.hosts</name><!-- <value>master</value> --><value>*</value> </property><property><name>hadoop.proxyuser.root.groups</name><!-- <value>hadoop</value> --><value>*</value> </property>即:
配置解析:
1、hadoop.proxyuser.root.hosts配置成*的意義,表示任意節(jié)點(diǎn)使用hadoop集群的代理用戶root都能訪問到hdfs集群。
2、hadoop.proxyuser.hadoop.groups表示代理用戶的組所屬.
3、hadoop.proxyuser.root.hosts 中的root為hadoop用戶,即hadoop的安裝目錄。
以上重啟一下hadoop集群后生效
2.5.2.2修改hive-site.xml的如下內(nèi)容:
<property><name>dfs.webhdfs.enabled</name><value>true</value></property><property><name>hive.server2.thrift.client.user</name><value>root</value><description>Username to use against thrift client</description></property><property><name>hive.server2.thrift.client.password</name><value>123456</value><description>Password to use against thrift client</description></property><property><name>hive.server2.thrift.bind.host</name><value>hadoop1</value><description>Bind host on which to run the HiveServer2 Thrift service.</description></property><property><name>hive.server2.thrift.port</name><value>10000</value><description>Port number of HiveServer2 Thrift interface when hive.server2.transport.mode is 'binary'.</description></property><property><name>hive.server2.thrift.http.port</name><value>10001</value><description>Port number of HiveServer2 Thrift interface when hive.server2.transport.mode is 'http'.</description></property>要注意的是這里的用戶名root,密碼是操作系統(tǒng)的登錄名和密碼。
然后執(zhí)行:
nohup hive --service hiveserver2 &或使用類似以下方式運(yùn)行:
nohup hiveserver2 1>/home/hadoop/hiveserver.log 2>/home/hadoop/hiveserver.err & 或者:nohup hiveserver2 1>/dev/null 2>/dev/null & 或者:nohup hiveserver2 >/dev/null 2>&1 &登錄beenline的方式:
beeline -u jdbc:hive2//hadoop1:10000 -n root -u :指定元數(shù)據(jù)的連接信息 -n :指定用戶名和密碼 另外還有一種方式可以去連接 先執(zhí)行beeline,然后再輸入:!connect jdbc:hive2://hadoop1:10000 [root@hadoop1 apache-hive-2.3.4-bin]# bin/beeline SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/home/installed/apache-hive-2.3.4-bin/lib/log4j-slf4j-impl-2.6.2.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/home/installed/hadoop-2.8.5/share/hadoop/common/lib/slf4j-log4j12-1.7.10.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory] Beeline version 2.3.4 by Apache Hive beeline> !connect jdbc:hive2://hadoop1:10000 Connecting to jdbc:hive2://hadoop1:10000 Enter username for jdbc:hive2://hadoop1:10000: Enter password for jdbc:hive2://hadoop1:10000: Connected to: Apache Hive (version 2.3.4) Driver: Hive JDBC (version 2.3.4) Transaction isolation: TRANSACTION_REPEATABLE_READ 0: jdbc:hive2://hadoop1:10000>
再如:
2.5.3Hive wui
暫略
2.5.4和Squirrel SQL Client集成
https://cwiki.apache.org/confluence/display/Hive/HiveServer2+Clients 此中最下方含有介紹。
2.5.5和Oracle的SQL Developer集成
可以和Oracle的SQLDevelopers集成
https://community.hortonworks.com/articles/1887/connect-oracle-sql-developer-to-hive.html
總結(jié)
以上是生活随笔為你收集整理的2.4-2.5、Hive整合(整合Spark、整合Hbase)、连接方式Cli、HiveServer和hivemetastore、Squirrel SQL Client等的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 机动车违反禁令禁止标线扣几分?
- 下一篇: Ambari2.7.0 + HDP3.1