hive 安装警告 WARN conf.HiveConf: HiveConf of name hive.metastore.local does not exist

解决方法:
在0.10  0.11或者之后的HIVE版本 hive.metastore.local 属性不再使用。
在配置文件里面:
 
 hive.metastore.local
  false
  controls whether to connect to remove metastore server or open a new metastore server in Hive Client JVM
删除掉,再次登录警告就消失了
hive-site.xml 中如下内容:(在0.10  0.11或者之后的HIVE版本 hive.metastore.local 属性不再使用)
    
         
            hive.metastore.local
             true
       

 

 javax.jdo.option.ConnectionURL
 jdbc:mysql://hadoop00:3306/hive?createDatabaseIfNotExist=true
 JDBC connect string for a JDBC metastore




 javax.jdo.option.ConnectionDriverName
 com.mysql.jdbc.Driver
 Driver class name for a JDBC metastore




 javax.jdo.option.ConnectionUserName
 zhangge
 username to use against metastore database




 javax.jdo.option.ConnectionPassword
 zhangge
 password to use against metastore database

你可能感兴趣的:(hive 安装警告 WARN conf.HiveConf: HiveConf of name hive.metastore.local does not exist)