我有一个数据框,它有一些属性(C1到C2),一个偏移量(以天为单位)和一些值(V1,V2)。
val inputDF= spark.sparkContext.parallelize(Seq((1,2,30, 100, -1),(1,2,30, 100, 0), (1,2,30, 100, 1),(11,21,30, 100, -1),(11,21,30, 100, 0), (11,21,30, 100, 1)), 10).toDF("c1", "c2", "v1", "v2", "offset")
inputDF: org.apache.spark.sql.DataFrame = [c1: int, c2: int ... 3 more fields]
scala> inputDF.show
+---+---+---+---+------+
| c1| c2| v1| v2|offset|
+---+---+---+---+------+
| 1| 2| 30|100| -1|
| 1| 2| 30|100| 0|
| 1| 2| 30|100| 1|
| 11| 21| 30|100| -1|
| 11| 21| 30|100| 0|
| 11| 21| 30|100| 1|
+---+---+---+---+------+
我需要做的是,计算跨越偏移量的V1,V2的累积和(c1,c2)。
我试过了,但这远远不适用于任何数据框架的通用解决方案。
import org.apache.spark.sql.expressions.Window
val groupKey = List("c1", "c2").map(x => col(x.trim))
val orderByKey = List("offset").map(x => col(x.trim))
val w = Window.partitionBy(groupKey: _*).orderBy(orderByKey: _*)
val outputDF = inputDF
.withColumn("cumulative_v1", sum(inputDF("v1")).over(w))
.withColumn("cumulative_v2", sum(inputDF("v2")).over(w))
+---+---+---+---+------+----------------------------
| c1| c2| v1| v2|offset|cumulative_v1| cumulative_v2|
+---+---+---+---+------+-------------|--------------|
| 1| 2| 30|100| -1|30 | 100 |
| 1| 2| 30|100| 0|60 | 200 |
| 1| 2| 30|100| 1|90 | 300 |
| 11| 21| 30|100| -1|30 | 100 |
| 11| 21| 30|100| 0|60 | 200 |
| 11| 21| 30|100| 1|90 | 300 |
+---+---+---+---+------+-----------------------------
挑战是[a]我需要跨越多个不同的偏移窗口(-1到1),( - 10到10),( - 30到30)或任何其他窗口(b)我需要使用这个函数跨多个数据框/数据集,所以我希望一个可以在RDD / Dataset中工作的泛型函数。
关于如何在Spark 2.0中实现这一点的任何想法?
非常感谢帮助。谢谢!
答案 0 :(得分:0)
这是使用数据帧的原始视图。
import org.apache.spark.sql.expressions.Window
val groupKey = List("c1", "c2").map(x => col(x.trim))
val orderByKey = List("offset").map(x => col(x.trim))
val w = Window.partitionBy(groupKey: _*).orderBy(orderByKey: _*)
val inputDF= spark
.sparkContext
.parallelize(Seq((1,2,30, 100, -1),(1,2,3, 100, -2),(1,2,140, 100, 2),(1,2,30, 100, 0), (1,2,30, 100, 1),(11,21,30, 100, -1),(11,21,30, 100, 0), (11,21,30, 100, 1)), 10)
.toDF("c1", "c2", "v1", "v2", "offset")
val outputDF = inputDF
.withColumn("cumulative_v1", sum(when($"offset".between(-1, 1), inputDF("v1")).otherwise(0)).over(w))
.withColumn("cumulative_v3", sum(when($"offset".between(-2, 2), inputDF("v1")).otherwise(0)).over(w))
.withColumn("cumulative_v2", sum(inputDF("v2")).over(w))
这会为不同的窗口生成一个“值”的累积和。
scala> outputDF.show
+---+---+---+---+------+-------------+-------------+-------------+
| c1| c2| v1| v2|offset|cumulative_v1|cumulative_v3|cumulative_v2|
+---+---+---+---+------+-------------+-------------+-------------+
| 1| 2| 3|100| -2| 0| 0| 100|
| 1| 2| 30|100| -1| 30| 30| 200|
| 1| 2| 30|100| 0| 60| 60| 300|
| 1| 2| 30|100| 1| 90| 90| 400|
| 1| 2|140|100| 2| 90| 90| 500|
| 11| 21| 30|100| -1| 30| 30| 100|
| 11| 21| 30|100| 0| 60| 60| 200|
| 11| 21| 30|100| 1| 90| 90| 300|
+---+---+---+---+------+-------------+-------------+-------------+
这种方法的一些缺点 - [1]对于每个条件窗口(-1,1),( - 2,2)或任何(from_offset,to_offset),sum()需要单独调用。 [2]这不是一般功能。
我知道spark接受像这样的聚合函数的列的变量列表 -
val exprs = Map("v1" -> "sum", "v2" -> "sum")
但我不确定如何为具有可变条件的窗口函数扩展它。我仍然很想知道是否有更好的模块化/可重用功能,我们可以编写来解决这个问题。
答案 1 :(得分:0)
解决此问题的另一种通用方法是使用foldLeft,如此处所述 - https://stackoverflow.com/a/44532867/7059145