在 Spark RDD (Scala) 中指定元素的子集

Specify subset of elements in Spark RDD (Scala)

我的数据集是一个有 140 多列的 RDD[Array[String]]。我如何 select 列的子集而不对列号进行硬编码 (.map(x => (x(0),x(3),x(6)...))?

这是我迄今为止尝试过的方法(成功):

val peopleTups = people.map(x => x.split(",")).map(i => (i(0),i(1)))

但是,我需要的不止几个列,我想避免对它们进行硬编码。

这是我迄今为止尝试过的方法(我认为会更好,但失败了):

// Attempt 1
val colIndices = [0,3,6,10,13]
val peopleTups = people.map(x => x.split(",")).map(i => i(colIndices))

// Error output from attempt 1:
<console>:28: error: type mismatch;
 found   : List[Int]
 required: Int
       val peopleTups = people.map(x => x.split(",")).map(i => i(colIndices))

// Attempt 2
colIndices map peopleTups.lift

// Attempt 3
colIndices map peopleTups

// Attempt 4
colIndices.map(index => peopleTups.apply(index))

我发现了这个问题并进行了尝试,但是因为我正在查看 RDD 而不是数组,所以它没有用:

这个呢?

val data = sc.parallelize(List("a,b,c,d,e", "f,g,h,i,j"))
val indices =  List(0,3,4)
data.map(_.split(",")).map(ss => indices.map(ss(_))).collect

这应该给

res1: Array[List[String]] = Array(List(a, d, e), List(f, i, j))

您应该映射到 RDD 而不是索引。

val list = List.fill(2)(Array.range(1, 6))
// List(Array(1, 2, 3, 4, 5), Array(1, 2, 3, 4, 5))

val rdd = sc.parallelize(list) // RDD[Array[Int]]
val indices = Array(0, 2, 3)

val selectedColumns = rdd.map(array => indices.map(array)) // RDD[Array[Int]]

selectedColumns.collect() 
// Array[Array[Int]] = Array(Array(1, 3, 4), Array(1, 3, 4))