我有一个示例应用程序正在从csv文件读取数据帧。可以使用该方法将数据帧以镶木地板格式存储到Hive表中
df.saveAsTable(tablename,mode)
的。
上面的代码工作正常,但我每天都有很多数据,我希望根据creationdate(表中的列)动态分区hive表。
有没有办法对数据帧进行动态分区并将其存储到hive仓库。想要避免使用 hivesqlcontext.sql(insert into table partittioin by(date)....)
对插入语句进行硬编码。
问题可被视为对How to save DataFrame directly to Hive?
的扩展非常感谢任何帮助。
答案 0 :(得分:30)
我能够使用df.write().mode(SaveMode.Append).partitionBy("colname").saveAsTable("Table")
我必须启用以下属性才能使其正常工作。
hiveContext.setConf("hive.exec.dynamic.partition", "true") hiveContext.setConf("hive.exec.dynamic.partition.mode", "nonstrict")
答案 1 :(得分:23)
我相信它的作用是这样的:
df
是包含年,月和其他列的数据框
df.write.partitionBy('year', 'month').saveAsTable(...)
或
df.write.partitionBy('year', 'month').insertInto(...)
答案 2 :(得分:6)
我也面对同样的事情,但是使用了我解决的以下技巧。
当我们将任何表分区为分区时,分区列将区分大小写。
分区列应存在于具有相同名称的DataFrame中(区分大小写)。代码:
var dbName="your database name"
var finaltable="your table name"
// First check if table is available or not..
if (sparkSession.sql("show tables in " + dbName).filter("tableName='" +finaltable + "'").collect().length == 0) {
//If table is not available then it will create for you..
println("Table Not Present \n Creating table " + finaltable)
sparkSession.sql("use Database_Name")
sparkSession.sql("SET hive.exec.dynamic.partition = true")
sparkSession.sql("SET hive.exec.dynamic.partition.mode = nonstrict ")
sparkSession.sql("SET hive.exec.max.dynamic.partitions.pernode = 400")
sparkSession.sql("create table " + dbName +"." + finaltable + "(EMP_ID string,EMP_Name string,EMP_Address string,EMP_Salary bigint) PARTITIONED BY (EMP_DEP STRING)")
//Table is created now insert the DataFrame in append Mode
df.write.mode(SaveMode.Append).insertInto(empDB + "." + finaltable)
}
答案 3 :(得分:3)
可以通过以下方式在SparkSession
上进行配置:
spark = SparkSession \
.builder \
...
.config("spark.hadoop.hive.exec.dynamic.partition", "true") \
.config("spark.hadoop.hive.exec.dynamic.partition.mode", "nonstrict") \
.enableHiveSupport() \
.getOrCreate()
或者您可以将它们添加到.properties文件中
Spark配置(至少在2.4版本中)需要spark.hadoop
前缀,这是Spark设置此配置的方式:
/**
* Appends spark.hadoop.* configurations from a [[SparkConf]] to a Hadoop
* configuration without the spark.hadoop. prefix.
*/
def appendSparkHadoopConfigs(conf: SparkConf, hadoopConf: Configuration): Unit = {
SparkHadoopUtil.appendSparkHadoopConfigs(conf, hadoopConf)
}
答案 4 :(得分:1)
这对我有用。我设置了这些设置,然后将数据放入分区表中。
from pyspark.sql import HiveContext
sqlContext = HiveContext(sc)
sqlContext.setConf("hive.exec.dynamic.partition", "true")
sqlContext.setConf("hive.exec.dynamic.partition.mode",
"nonstrict")
答案 5 :(得分:0)
这对我使用python和spark 2.1.0有用。
不确定这是否是最好的方法,但是它可以工作...
# WRITE DATA INTO A HIVE TABLE
import pyspark
from pyspark.sql import SparkSession
spark = SparkSession \
.builder \
.master("local[*]") \
.config("hive.exec.dynamic.partition", "true") \
.config("hive.exec.dynamic.partition.mode", "nonstrict") \
.enableHiveSupport() \
.getOrCreate()
### CREATE HIVE TABLE (with one row)
spark.sql("""
CREATE TABLE IF NOT EXISTS hive_df (col1 INT, col2 STRING, partition_bin INT)
USING HIVE OPTIONS(fileFormat 'PARQUET')
PARTITIONED BY (partition_bin)
LOCATION 'hive_df'
""")
spark.sql("""
INSERT INTO hive_df PARTITION (partition_bin = 0)
VALUES (0, 'init_record')
""")
###
### CREATE NON HIVE TABLE (with one row)
spark.sql("""
CREATE TABLE IF NOT EXISTS non_hive_df (col1 INT, col2 STRING, partition_bin INT)
USING PARQUET
PARTITIONED BY (partition_bin)
LOCATION 'non_hive_df'
""")
spark.sql("""
INSERT INTO non_hive_df PARTITION (partition_bin = 0)
VALUES (0, 'init_record')
""")
###
### ATTEMPT DYNAMIC OVERWRITE WITH EACH TABLE
spark.sql("""
INSERT OVERWRITE TABLE hive_df PARTITION (partition_bin)
VALUES (0, 'new_record', 1)
""")
spark.sql("""
INSERT OVERWRITE TABLE non_hive_df PARTITION (partition_bin)
VALUES (0, 'new_record', 1)
""")
spark.sql("SELECT * FROM hive_df").show() # 2 row dynamic overwrite
spark.sql("SELECT * FROM non_hive_df").show() # 1 row full table overwrite
答案 6 :(得分:0)
df1.write.mode("append").format('ORC').partitionBy("date").option('path', '/hdfs_path').saveAsTable("DB.Partition_tablename")
它将创建具有“日期”列值的分区,并且还将在来自 spark DF 的 hive 中写入 Hive 外部表。