hadoop - 无法使用 Spark 从 HiveContext 获取现有 Hive 表

标签 hadoop apache-spark hive apache-spark-sql hivecontext

我正在尝试使用 HiveContext 从 Spark 获取 Hive 的数据库或表详细信息。但我无法指向现有的 Hive 数据库,如下所示: Spark 版本:2.2.0 hive 版本:2.3.0

在 Spark Shell 中使用以下脚本连接到现有的 Hive 服务器(下面使用的 127.0.0.1 是我的机器 IP 地址):

scala> val hc = new org.apache.spark.sql.hive.HiveContext(sc)
warning: there was one deprecation warning; re-run with -deprecation for details
hc: org.apache.spark.sql.hive.HiveContext = org.apache.spark.sql.hive.HiveContext@6dde913e

scala> hc.setConf("hive.metastore.uris","thrift://127.0.0.1:9083")

scala> val df = hc.sql("show databases")
df: org.apache.spark.sql.DataFrame = [databaseName: string]

scala> df.show
+------------+
|databaseName|
+------------+
|     default|
+------------+


scala> val dfTables = hc.sql("show tables");
dfTables: org.apache.spark.sql.DataFrame = [database: string, tableName: string ... 1 more field]

scala> dfTables.show
+--------+---------+-----------+
|database|tableName|isTemporary|
+--------+---------+-----------+
+--------+---------+-----------+

如上所示,我无法获取现有的 Hive 数据库和表。 HiveContext 指向新数据库(默认)并且没有可用的表。 下面列出了我的配置单元数据库:

hive> show databases;
OK
default
mydbbackup
Time taken: 7.593 seconds, Fetched: 2 row(s)
hive> use mydbbackup;
OK
Time taken: 0.021 seconds
hive> show tables;
OK
customers
customerspart
customerspart1
Time taken: 0.194 seconds, Fetched: 3 row(s)
hive> 

下面是我的 hive-site.xml:

<configuration>
<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:derby:;databaseName=/home/hduser/apache-hive-2.3.0-bin/metastore_db;create=true</value>
<description>
JDBC connect string for a JDBC metastore.
To use SSL to encrypt/authenticate the connection, provide database-specific SSL flag in the connection URL.
For example, jdbc:postgresql://myhost/db?ssl=true for postgres database.
</description>
</property>
<property>
<name>hive.metastore.warehouse.dir</name>
<value>/user/hive/warehouse</value>
<description>location of default database for the warehouse</description>
</property>
<property>
<name>hive.metastore.uris</name>
<value/>
<description>Thrift URI for the remote metastore. Used by metastore client to connect to remote metastore.</description>
</property>
<property>
<name>javax.jdo.option.ConnectionDriverName</name>
<value>org.apache.derby.jdbc.EmbeddedDriver</value>
<description>Driver class name for a JDBC metastore</description>
</property>
<property>
<name>javax.jdo.PersistenceManagerFactoryClass</name>
<value>org.datanucleus.api.jdo.JDOPersistenceManagerFactory</value>
<description>class implementing the jdo persistence</description>
</property>
</configuration>

下面是我的sparkconf目录:

total 40
drwxr-xr-x  2 root root 4096 Nov 12 20:22 ./
drwxr-xr-x 12 root root 4096 Nov  9 22:57 ../
-rw-r--r--  1 root root  996 Nov  9 22:57 docker.properties.template
-rw-r--r--  1 root root 1105 Nov  9 22:57 fairscheduler.xml.template
-rw-r--r--  1 root root 2025 Nov  9 22:57 log4j.properties.template
-rw-r--r--  1 root root 7313 Nov  9 22:57 metrics.properties.template
-rw-r--r--  1 root root  865 Nov  9 22:57 slaves.template
-rw-r--r--  1 root root 1292 Nov  9 22:57 spark-defaults.conf.template
-rwxr-xr-x  1 root root 3699 Nov  9 22:57 spark-env.sh.template*

我是否需要修改任何内容以指向现有的 Hive 服务器而不是创建新的。请帮助我。

最佳答案

启动 Spark shell,如下所示:

./spark-shell --driver-java-options 
"-Dhive.metastore.uris=thrift://localhost:9083"

关于hadoop - 无法使用 Spark 从 HiveContext 获取现有 Hive 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47257680/

相关文章:

scala - Spark : How to join two `Dataset` s A and B with the condition that an ID array column of A does NOT contain the ID column of B?

hadoop - 在 java 中使用 hiveContext 修复配置单元表

hadoop - 配置单元在单节点群集上的安装

hadoop - 如何在新的 Hadoop api 中设置映射器的数量?

java - Mapreduce 字数统计 Hadoop 最高频词

hadoop - 在 docker swarm 外部访问 hdfs

apache-spark - Spark错误: Could not initialize class org. apache.spark.rdd.RDDOperationScope

hadoop - 配置单元将文件加载到表副本

java - 将数据集的内容写入 JSON 字符串

hive - 使用 beeline 从 .hql 文件编译 ddl 对象