我正在使用 Apache Spark 2.1.1,并将以下 hive-site.xml 放在$SPARK_HOME/conf
文件夹中:
<?xml version="1.0"?>
<configuration>
<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:mysql://mysql_server:3306/hive_metastore?createDatabaseIfNotExist=true</value>
<description>JDBC connect string for a JDBC metastore</description>
</property>
<property>
<name>javax.jdo.option.ConnectionDriverName</name>
<value>com.mysql.jdbc.Driver</value>
<description>Driver class name for a JDBC metastore</description>
</property>
<property>
<name>javax.jdo.option.ConnectionUserName</name>
<value>hive</value>
<description>username to use against metastore database</description>
</property>
<property>
<name>javax.jdo.option.ConnectionPassword</name>
<value>password</value>
<description>password to use against metastore database</description>
</property>
<property>
<name>hive.metastore.schema.verification</name>
<value>false</value>
<description>password to use against metastore database</description>
</property>
<property>
<name>hadoop.tmp.dir</name>
<value>${test.tmp.dir}/hadoop-tmp</value>
<description>A base for other temporary directories.</description>
</property>
<property>
<name>hive.metastore.warehouse.dir</name>
<value>hdfs://hadoop_namenode:9000/value_iq/hive_warehouse/</value>
<description>Warehouse Location</description>
</property>
</configuration>
当我启动 thrift 服务器时,metastore 模式是在我的 MySQL 数据库上创建的,但没有使用,而是使用了 Derby。
在 thrift 服务器日志文件上找不到任何错误,唯一引起我注意的是它首先尝试使用 MySQL(INFO MetaStoreDirectSql: Using direct SQL, underlying DB is MYSQL
),但随后没有任何错误,而是使用 Derby(INFO MetaStoreDirectSql: Using direct SQL, underlying DB is DERBY
)。这是 thrift 服务器日志https://www.dropbox.com/s/rxfwgjm9bdccaju/spark-root-org.apache.spark.sql.hive.thriftserver.HiveThriftServer2-1-s-master.value-iq.com。出?dl=0
我的系统上没有安装 Hive,我只是假装使用 Apache Spark 的内置 Hive。
我正在使用mysql-connector-java-5.1.23-bin.jar
位于$SPARK_HOME/jars
文件夹中的哪个。