def description(list:Array[String]): Array[String] = {
for (y <- list) yield modulelookup.lookup(take(4)) + " " + brandlookup.lookup(y.drop(4)).toString()
}
val printRDD = outputRDD.collect().map(x=> (description(x._1),x._2))
是我目前的代码。我想这样做而不收集。 modulelookup和brandlookup是RDD。这该怎么做?
答案 0 :(得分:2)
如果modulelookup
和brandlookup
相对较小,您可以将这些转换为广播变量并用于映射,如下所示:
val modulelookupBD = sc.broadcast(modulelookup.collectAsMap)
val brandlookupBD = sc.broadcast(brandlookup.collectAsMap)
def description(list:Array[String]): Array[String] = list.map(x => {
val module = modulelookupBD.value.getOrElse(x.take(4), "")
val brand = brandlookupBD.value.getOrElse(x.drop(4), "")
s"$module $brand"
})
val printRDD = outputRDD.map{case (xs, y) => (description(xs), y)}
如果没有,则没有有效的方法来处理这个问题。您可以尝试flatMap
,join
和groupByKey
,但对于任何大型数据集,此组合都可能非常昂贵。
val indexed = outputRDD.zipWithUniqueId
val flattened = indexed.flatMap{case ((xs, _), id) => xs.map(x => (x, id))}
val withModuleAndBrand = flattened
.map(xid => (xid._1.take(4), xid))
.join(modulelookup)
.values
.map{case ((x, id), module) => (x.drop(4), (id, module))}
.join(brandlookup)
.values
.map{case ((id, module), brand) => (id, s"$module $brand")}
.groupByKey
val final = withModuleAndBrand.join(
indexed.map{case ((_, y), id) => (id, y)}
).values
用DataFrame替换RDD可以减少样板代码,但性能仍然存在问题。