正常打开hive,运行连接元数据超时!

FAILED: SemanticException
org.apache.hadoop.hive.ql.metadata.HiveException:
java.lang.RuntimeException: Unable to instantiate
org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient

打开hive成功,show databases;时报连接元数据超时的错误
用debug模式打开hive

hive -hiveconf hive.root.logger=DEBUG,console

发现是版本问题

1.登陆mysql,修改hive metastore版本:
进行mysql:mysql -u root -p (123456)

use hive;
select * from VERSION;
update VERSION set SCHEMA_VERSION='2.3.4' where  VER_ID=1;

此处的2.3.4是我的hive的版本
解决问题,但是下次打开hive,又出现同样的问题

使用第二个方法,不会再出现这个问题
简单粗暴:在hvie-site.xml中关闭版本验证


     hive.metastore.schema.verification
    false 

你可能感兴趣的:(云计算与大数据)