In MySQL mancano le tabelle necessarie per il metastore. Crea manualmente le tabelle e riavvia il metastore hive.
I file di schema per MySQL saranno disponibili nel percorso $HIVE_HOME/scripts/metastore/upgrade/mysql/
.
cd $HIVE_HOME/scripts/metastore/upgrade/mysql/
< Login into MySQL >
mysql> drop database IF EXISTS hive;
mysql> create database hive;
mysql> use hive;
mysql> source hive-schema-2.1.1.mysql.sql;
Riavvia il metastore Hive.