我遇到的问题是Hive表的架构在使用Spark 2.1.0和Hive 2.1.1的Mapr群集上的Spark和Hive之间不同步。
我需要尝试专门针对托管表解决此问题,但可以使用非托管/外部表重现该问题。
saveAsTable
将数据框保存到给定的表格。mode("overwrite").parquet("path/to/table")
覆盖以前保存的表格的数据。我实际上是通过Spark和Hive外部的进程修改数据,但这会重现同样的问题。spark.catalog.refreshTable(...)
刷新元数据spark.table(...).show()
查询表格。原始数据框和覆盖的数据框之间的任何列都将正确显示新数据,但不会显示仅在新表中的任何列。db_name = "test_39d3ec9"
table_name = "overwrite_existing"
table_location = "<spark.sql.warehouse.dir>/{}.db/{}".format(db_name, table_name)
qualified_table = "{}.{}".format(db_name, table_name)
spark.sql("CREATE DATABASE IF NOT EXISTS {}".format(db_name))
另存为托管表
existing_df = spark.createDataFrame([(1, 2)])
existing_df.write.mode("overwrite").saveAsTable(table_name)
请注意,使用以下内容保存为非托管表将产生相同的问题:
existing_df.write.mode("overwrite") \
.option("path", table_location) \
.saveAsTable(qualified_table)
查看表的内容
spark.table(table_name).show()
+---+---+
| _1| _2|
+---+---+
| 1| 2|
+---+---+
直接覆盖镶木地板文件
new_df = spark.createDataFrame([(3, 4, 5, 6)], ["_4", "_3", "_2", "_1"])
new_df.write.mode("overwrite").parquet(table_location)
使用镶木地板阅读器查看内容,内容显示正确
spark.read.parquet(table_location).show()
+---+---+---+---+
| _4| _3| _2| _1|
+---+---+---+---+
| 3| 4| 5| 6|
+---+---+---+---+
刷新表的spark元数据并再次作为表读入。将针对相同的列更新数据,但不显示其他列。
spark.catalog.refreshTable(qualified_table)
spark.table(qualified_table).show()
+---+---+
| _1| _2|
+---+---+
| 6| 5|
+---+---+
我还尝试在hive shell中使用以下命令调用spark.catalog.refreshTable
之前更新hive中的模式:
ALTER TABLE test_39d3ec9.overwrite_existing REPLACE COLUMNS (`_1` bigint, `_2` bigint, `_3` bigint, `_4` bigint);
运行ALTER命令后,我运行describe并在hive中正确显示
DESCRIBE test_39d3ec9.overwrite_existing
OK
_1 bigint
_2 bigint
_3 bigint
_4 bigint
在运行alter命令之前,它仅按预期显示原始列
DESCRIBE test_39d3ec9.overwrite_existing
OK
_1 bigint
_2 bigint
然后我运行spark.catalog.refreshTable
但它没有影响spark的数据视图。
从火花方面来说,我使用PySpark完成了大部分测试,但也在spark-shell(scala)和sparksql shell中进行了测试。在火花壳中,我也尝试使用HiveContext
,但没有用。
import org.apache.spark.sql.hive.HiveContext
import spark.sqlContext.implicits._
val hiveObj = new HiveContext(sc)
hiveObj.refreshTable("test_39d3ec9.overwrite_existing")
在hive shell中执行ALTER命令之后,我在Hue中验证了架构也在那里发生了变化。
我也尝试用spark.sql("ALTER ...")
运行ALTER命令,但是我们所使用的Spark版本(2.1.0)不允许它,看起来它在Spark 2.2.0基于之前不可用这个问题:https://issues.apache.org/jira/browse/SPARK-19261
我还再次阅读了火花文档,特别是本节:https://spark.apache.org/docs/2.1.0/sql-programming-guide.html#hive-metastore-parquet-table-conversion
根据这些文档,spark.catalog.refreshTable
应该有效。 spark.sql.hive.convertMetastoreParquet
的配置通常为false
,但我将其切换为true
进行测试,但似乎没有任何效果。
任何帮助将不胜感激,谢谢!
答案 0 :(得分:1)
在CDH 5.11.x软件包中使用spark 2.2.0时遇到了类似的问题。
在spark.write.mode("overwrite").saveAsTable()
发出spark.read.table().show
之后,将不会显示任何数据。
经检查,我发现这是CDH spark 2.2.0版本的已知问题。解决方法是在执行saveAsTable命令后运行以下命令。
spark.sql("ALTER TABLE qualified_table set SERDEPROPERTIES ('path'='hdfs://{hdfs_host_name}/{table_path}')")
spark.catalog.refreshTable("qualified_table")
例如:如果您的桌子在LOCATION
就像 hdfs://hdfsHA/user/warehouse/example.db/qualified_table
然后分配'path'='hdfs://hdfsHA/user/warehouse/example.db/qualified_table'
这对我有用。试试看。我想现在您的问题已经解决。如果没有,您可以尝试这种方法。
解决方法来源: https://www.cloudera.com/documentation/spark2/2-2-x/topics/spark2_known_issues.html