我正在尝试使用 Spark Structured Streaming - writeStream
API 写入外部分区 Hive 表。
CREATE EXTERNAL TABLE `XX`(
`a` string,
`b` string,
`b` string,
`happened` timestamp,
`processed` timestamp,
`d` string,
`e` string,
`f` string )
PARTITIONED BY (
`year` int, `month` int, `day` int)
CLUSTERED BY (d)
INTO 6 BUCKETS
STORED AS ORC
TBLPROPERTIES (
'orc.compress'='ZLIB',
'orc.compression.strategy'='SPEED',
'orc.create.index'='true',
'orc.encoding.strategy'='SPEED');
在 Spark 代码中,
val hiveOrcWriter: DataStreamWriter[Row] = event_stream
.writeStream
.outputMode("append")
.format("orc")
.partitionBy("year","month","day")
//.option("compression", "zlib")
.option("path", _table_loc)
.option("checkpointLocation", _table_checkpoint)
我看到在非分区表上,记录被插入 Hive。但是,在使用分区表时,火花作业不会失败或引发异常,但不会将记录插入 Hive 表。
感谢任何处理过类似问题的人的评论。
编辑:
刚刚发现 .orc 文件确实写入了 HDFS,具有正确的分区目录结构:例如。/_table_loc/_table_name/year/month/day/part-0000-0123123.c000.snappy.orc
然而
select * from 'XX' limit 1; (or where year=2018)
不返回任何行。
表 'XX' 的和InputFormat
分别是和
。OutputFormat
org.apache.hadoop.hive.ql.io.orc.OrcInputFormat
org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat