配置好hive,第一次使用时,可能会出现以下错误:
MetaException(message:Hive metastore database is not initialized. Please use schematool (e.g. ./schematool -initSchema -dbType …) to create the schema. If needed, don’t forget to include the option to auto-create the underlying database in your JDBC connection string (e.g. ?createDatabaseIfNotExist=true for mysql))

这是由于没有初始化数据库,生成元数据。
需要执行以下指令(在hive的bin目录下执行)
./schematool -initSchema -dbType mysql
最后一个参数为hive存放元数据所使用的数据库,我用的是mysql。如果使用derby,将最后的参数改为derby就可以了。
在使用hive1.x时不记得遇到过,在配置2.1.0时出现。
本文详细介绍了在配置Hive 2.1.0时遇到的元数据未初始化错误,提供了具体的解决方案,即通过执行特定命令来初始化数据库,确保Hive能够正常运行。
2478

被折叠的 条评论
为什么被折叠?



