Hive部署和3种搭建模式

Hive部署

 

 

   以上,是参考《Hadoop海量数据处理  技术详解与项目实战》





Hive搭建模式

1、local模式此模式连接到一个In-memory 的数据库Derby,一般用于Unit Test。

这种方式是最简单的存储方式,只需要在hive-site.xml做如下配置便可

  
  javax.jdo.option.ConnectionURL  
  jdbc:derby:;databaseName=metastore_db;create=true  
  
   
  
  javax.jdo.option.ConnectionDriverName  
  org.apache.derby.jdbc.EmbeddedDriver  
  
   
  
  hive.metastore.local  
  true  
  
   
  
  hive.metastore.warehouse.dir  
  /user/hive/warehouse  

注:使用derby存储方式时,运行hive会在当前目录生成一个derby文件和一个metastore_db目录。这种存储方式的弊端是在同一个目录下同时只能有一个hive客户端能使用数据库,否则会提示错误



2、单用户模式

这种存储方式需要在本地运行一个mysql服务器,并作如下配置(下面两种使用mysql的方式,需要将mysqljar包拷贝到$HIVE_HOME/lib目录下)。

hive-site.xml做如下配置

  
  hive.metastore.warehouse.dir  
  /user/hive_remote/warehouse  
  
   
  
  hive.metastore.local  
  true  
  
   
  
  javax.jdo.option.ConnectionURL  
  jdbc:mysql://localhost/hive_remote?createDatabaseIfNotExist=true  
  
   
  
  javax.jdo.option.ConnectionDriverName  
  com.mysql.jdbc.Driver  
  
   
  
  javax.jdo.option.ConnectionUserName  
  hive  
  
   
  
  javax.jdo.option.ConnectionPassword  
  password  
  

附:

安装mysql  

Yum install mysql-server -y

 

修改mysql权限

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123' WITH GRANT OPTION;

flush privileges;

删除多余会对权限造成影响的数据
刷新权限

[ERROR] Terminal initialization failed; falling back to unsupported

java.lang.IncompatibleClassChangeError: Found class jline.Terminal, but interface was expected

at jline.TerminalFactory.create(TerminalFactory.java:101)

错误的原因: Hadoop jline版本和hivejline不一致



3、远程服务器模式/多用户模式

1.Remote一体(hive的服务端和客户端都放在同一台服务器上

这种存储方式需要在远端服务器运行一个mysql服务器,并且需要在Hive服务器启动meta服务。


hive-site.xml 做如下配置

  
  hive.metastore.warehouse.dir  
  /user/hive/warehouse  
  
   
  
  javax.jdo.option.ConnectionURL  
  jdbc:mysql://192.168.57.6:3306/hive?createDatabaseIfNotExist=true 
  
   
  
  javax.jdo.option.ConnectionDriverName  
  com.mysql.jdbc.Driver  
  
   
  
  javax.jdo.option.ConnectionUserName  
  hive  
  
   
  
  javax.jdo.option.ConnectionPassword  
  password  
  
  
  
  hive.metastore.local  
  false  
  
  
  
  hive.metastore.uris  
  thrift://192.168.1.188:9083  //当前服务器
 


2.Remote分开hive的服务端和客户端放在两台服务器上

hive-site.xml配置文件拆为如下两部分

 1)、服务端配置文件

  
  hive.metastore.warehouse.dir  
  /user/hive/warehouse  
  
   
  
  javax.jdo.option.ConnectionURL  
  jdbc:mysql://192.168.57.6:3306/hive?createDatabaseIfNotExist=true  
  
   
  
  javax.jdo.option.ConnectionDriverName  
  com.mysql.jdbc.Driver  
  
   
  
  javax.jdo.option.ConnectionUserName  
  root  
  
   
  
  javax.jdo.option.ConnectionPassword  
  123456  
  

 2)、客户端配置文件

  
  hive.metastore.warehouse.dir  
  /user/hive/warehouse  
  
   
  
  hive.metastore.local  
  false  
  
  
  
  hive.metastore.uris  
  thrift://192.168.57.5:9083  //服务器端



启动hive服务端程序

 hive --service metastore   

客户端直接使用hive命令即可

root@my188:~$ hive   
Hive history file=/tmp/root/hive_job_log_root_201301301416_955801255.txt  
hive> show tables;  
OK  
test_hive  
Time taken: 0.736 seconds  
hive>  

注意:

客户端启动的时候要注意:

[ERROR] Terminal initialization failed; falling back to unsupported

java.lang.IncompatibleClassChangeError: Found class jline.Terminal, but interface was expected

at jline.TerminalFactory.create(TerminalFactory.java:101)

错误的原因: Hadoop jline版本和hivejline不一致


你可能感兴趣的:(Hive部署和3种搭建模式)