Hi Bojan,

Could you please expand your idea on how to append to RDD? I can think of
how to append a constant value to each row on RDD:

//oldRDD - RDD[Array[String]]
val c = "const"
val newRDD = oldRDD.map(r=>c+:r)

But how to append a custom column to RDD? Something like:

val colToAppend = sc.makeRDD(1 to oldRDD.count().toInt)
//or sc.parallelize(1 to oldRDD.count().toInt)
//or (1 to 1 to oldRDD.count().toInt).toArray




--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/Add-row-IDs-column-to-data-frame-tp22385p22430.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org

Reply via email to