如何展平结构数组类型的列(由 Spark ML API 返回)?
Posted
技术标签:
【中文标题】如何展平结构数组类型的列(由 Spark ML API 返回)?【英文标题】:How to flatten columns of type array of structs (as returned by Spark ML API)? 【发布时间】:2017-10-13 18:32:25 【问题描述】:也许只是因为我对 API 比较陌生,但我觉得 Spark ML 方法经常返回不必要地难以使用的 DF。
这一次,让我失望的是 ALS 模型。具体来说,推荐ForAllUsers 方法。让我们重构它将返回的 DF 类型:
scala> val arrayType = ArrayType(new StructType().add("itemId", IntegerType).add("rating", FloatType))
scala> val recs = Seq((1, Array((1, .7), (2, .5))), (2, Array((0, .9), (4, .1)))).
toDF("userId", "recommendations").
select($"userId", $"recommendations".cast(arrayType))
scala> recs.show()
+------+------------------+
|userId| recommendations|
+------+------------------+
| 1|[[1,0.7], [2,0.5]]|
| 2|[[0,0.9], [4,0.1]]|
+------+------------------+
scala> recs.printSchema
root
|-- userId: integer (nullable = false)
|-- recommendations: array (nullable = true)
| |-- element: struct (containsNull = true)
| | |-- itemId: integer (nullable = true)
| | |-- rating: float (nullable = true)
现在,我只关心recommendations
列中的itemId
。毕竟方法是recommendForAllUsers
而不是recommendAndScoreForAllUsers
(好吧好吧,我就别再耍赖了……)
我该怎么做??
我以为我在创建 UDF 时就有了它:
scala> val itemIds = udf((arr: Array[(Int, Float)]) => arr.map(_._1))
但这会产生错误:
scala> recs.withColumn("items", items($"recommendations"))
org.apache.spark.sql.AnalysisException: cannot resolve 'UDF(recommendations)' due to data type mismatch: argument 1 requires array<struct<_1:int,_2:float>> type, however, '`recommendations`' is of array<struct<itemId:int,rating:float>> type.;;
'Project [userId#87, recommendations#92, UDF(recommendations#92) AS items#238]
+- Project [userId#87, cast(recommendations#88 as array<struct<itemId:int,rating:float>>) AS recommendations#92]
+- Project [_1#84 AS userId#87, _2#85 AS recommendations#88]
+- LocalRelation [_1#84, _2#85]
有什么想法吗?谢谢!
【问题讨论】:
【参考方案1】:哇,我的同事想出了一个非常优雅的解决方案:
scala> recs.select($"userId", $"recommendations.itemId").show
+------+------+
|userId|itemId|
+------+------+
| 1|[1, 2]|
| 2|[0, 4]|
+------+------+
所以也许 Spark ML API 并没有那么难 :)
【讨论】:
【参考方案2】:以数组作为列的类型,例如recommendations
,使用 explode 函数(或更高级的 flatMap 运算符)你会非常高效。
explode(e: Column): Column 为给定数组或映射列中的每个元素创建一个新行。
这为您提供了可以使用的裸结构。
import org.apache.spark.sql.types._
val structType = new StructType().
add($"itemId".int).
add($"rating".float)
val arrayType = ArrayType(structType)
val recs = Seq((1, Array((1, .7), (2, .5))), (2, Array((0, .9), (4, .1)))).
toDF("userId", "recommendations").
select($"userId", $"recommendations" cast arrayType)
val exploded = recs.withColumn("recs", explode($"recommendations"))
scala> exploded.show
+------+------------------+-------+
|userId| recommendations| recs|
+------+------------------+-------+
| 1|[[1,0.7], [2,0.5]]|[1,0.7]|
| 1|[[1,0.7], [2,0.5]]|[2,0.5]|
| 2|[[0,0.9], [4,0.1]]|[0,0.9]|
| 2|[[0,0.9], [4,0.1]]|[4,0.1]|
+------+------------------+-------+
select
运算符中的结构很好,*
(星号)可以将它们展平为每个结构字段的列。
你可以select($"element.*")
。
scala> exploded.select("userId", "recs.*").show
+------+------+------+
|userId|itemId|rating|
+------+------+------+
| 1| 1| 0.7|
| 1| 2| 0.5|
| 2| 0| 0.9|
| 2| 4| 0.1|
+------+------+------+
我认为这可以满足您的需求。
附言尽可能远离 UDF,因为它们会“触发”从内部格式 (InternalRow
) 到 JVM 对象的行转换,这会导致过多的 GC。
【讨论】:
以上是关于如何展平结构数组类型的列(由 Spark ML API 返回)?的主要内容,如果未能解决你的问题,请参考以下文章