36

我有一个示例应用程序可以将 csv 文件读取到数据帧中。可以使用方法将数据帧以 parquet 格式存储到 Hive 表中 df.saveAsTable(tablename,mode)

上面的代码工作正常,但是我每天都有这么多数据,我想根据创建日期(表中的列)对配置单元表进行动态分区。

有没有办法动态分区数据框并将其存储到配置单元仓库。想要避免使用hivesqlcontext.sql(insert into table partittioin by(date)....).

可以将问题视为对以下内容的扩展:如何将 DataFrame 直接保存到 Hive?

任何帮助深表感谢。

4

7 回答 7

42

我相信它的工作原理是这样的:

df是具有年、月和其他列的数据框

df.write.partitionBy('year', 'month').saveAsTable(...)

或者

df.write.partitionBy('year', 'month').insertInto(...)
于 2015-07-12T19:15:00.597 回答
40

我能够使用写入分区的配置单元表df.write().mode(SaveMode.Append).partitionBy("colname").saveAsTable("Table")

我必须启用以下属性才能使其工作。

hiveContext.setConf("hive.exec.dynamic.partition", "true")
hiveContext.setConf("hive.exec.dynamic.partition.mode", "nonstrict")
于 2016-02-25T08:06:38.447 回答
9

我也面临同样的事情,但使用我解决的以下技巧。

  1. 当我们对任何表进行分区时,分区列就会区分大小写。

  2. 分区列应存在于具有相同名称的 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)
    }
    
于 2017-08-16T06:08:18.553 回答
4

它可以这样配置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.hadoopSpark 配置需要前缀(至少在 2.4 中),这是 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)
  }
于 2020-05-21T08:24:54.437 回答
3

这对我有用。我设置了这些设置,然后将数据放入分区表中。

from pyspark.sql import HiveContext
sqlContext = HiveContext(sc)
sqlContext.setConf("hive.exec.dynamic.partition", "true")
sqlContext.setConf("hive.exec.dynamic.partition.mode", 
"nonstrict")
于 2018-07-29T22:24:09.473 回答
1

这对我使用 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
于 2018-09-17T14:43:07.737 回答
0

df1.write.mode("append").format('ORC').partitionBy("date").option('path', '/hdfs_path').saveAsTable("DB.Partition_tablename")

它将创建具有“日期”列值的分区,并且还将从 spark DF 写入配置单元中的配置单元外部表。

于 2021-05-31T13:45:27.570 回答