W MySQL brakuje niezbędnych tabel wymaganych dla metastore. Ręcznie utwórz tabele i uruchom ponownie metastore gałęzi.
Pliki schematów dla MySQL będą dostępne pod ścieżką $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;
Uruchom ponownie metastore Hive.