You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Linbo (JIRA)" <ji...@apache.org> on 2016/12/14 05:56:58 UTC

[jira] [Updated] (SPARK-18855) Add RDD flatten function

     [ https://issues.apache.org/jira/browse/SPARK-18855?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Linbo updated SPARK-18855:
--------------------------
    Target Version/s:   (was: 2.1.0)

> Add RDD flatten function
> ------------------------
>
>                 Key: SPARK-18855
>                 URL: https://issues.apache.org/jira/browse/SPARK-18855
>             Project: Spark
>          Issue Type: New Feature
>          Components: Spark Core
>            Reporter: Linbo
>              Labels: flatten, rdd
>
> A new RDD flatten function is similar to flatten function of scala collections:
> {code:title=spark-shell|borderStyle=solid}
> scala> val rdd = sc.makeRDD(List(List(1, 2, 3), List(4, 5), List(6)))
> rdd: org.apache.spark.rdd.RDD[List[Int]] = ParallelCollectionRDD[0] at makeRDD at <console>:24
> scala> rdd.flatten.collect
> res0: Array[Int] = Array(1, 2, 3, 4, 5, 6)
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org