use*_*076 16 scala dataframe apache-spark apache-spark-sql
使用Scala,我如何将dataFrame拆分为具有相同列值的多个dataFrame(无论是数组还是集合).例如,我想拆分以下DataFrame:
ID Rate State
1 24 AL
2 35 MN
3 46 FL
4 34 AL
5 78 MN
6 99 FL
Run Code Online (Sandbox Code Playgroud)
至:
数据集1
ID Rate State
1 24 AL
4 34 AL
Run Code Online (Sandbox Code Playgroud)
数据集2
ID Rate State
2 35 MN
5 78 MN
Run Code Online (Sandbox Code Playgroud)
数据集3
ID Rate State
3 46 FL
6 99 FL
Run Code Online (Sandbox Code Playgroud)
zer*_*323 19
您可以收集唯一的状态值,只需映射结果数组:
val states = df.select("State").distinct.collect.flatMap(_.toSeq)
val byStateArray = states.map(state => df.where($"State" <=> state))
Run Code Online (Sandbox Code Playgroud)
或者映射:
val byStateMap = states
.map(state => (state -> df.where($"State" <=> state)))
.toMap
Run Code Online (Sandbox Code Playgroud)
Python中的相同内容:
from itertools import chain
from pyspark.sql.functions import col
states = chain(*df.select("state").distinct().collect())
# PySpark 2.3 and later
# In 2.2 and before col("state") == state)
# should give the same outcome, ignoring NULLs
# if NULLs are important
# (lit(state).isNull() & col("state").isNull()) | (col("state") == state)
df_by_state = {state:
df.where(col("state").eqNullSafe(state)) for state in states}
Run Code Online (Sandbox Code Playgroud)
这里显而易见的问题是它需要对每个级别进行全数据扫描,因此这是一项昂贵的操作.如果您正在寻找一种方法来分割输出,请参阅如何将RDD拆分为两个或更多RDD?
特别是您可以Dataset按感兴趣的列编写分区:
val path: String = ???
df.write.partitionBy("State").parquet(path)
Run Code Online (Sandbox Code Playgroud)
并在需要时回读:
// Depend on partition prunning
for { state <- states } yield spark.read.parquet(path).where($"State" === state)
// or explicitly read the partition
for { state <- states } yield spark.read.parquet(s"$path/State=$state")
Run Code Online (Sandbox Code Playgroud)
根据数据的大小,输入的分割,存储和持久性级别的数量,它可能比多个过滤器更快或更慢.