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

Hyukjin Kwon updated SPARK-12061:
---------------------------------
    Labels: bulk-closed  (was: )

> Persist for Map/filter with Lambda Functions don't always read from Cache
> -------------------------------------------------------------------------
>
>                 Key: SPARK-12061
>                 URL: https://issues.apache.org/jira/browse/SPARK-12061
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 1.6.0, 2.1.0
>            Reporter: Xiao Li
>            Priority: Major
>              Labels: bulk-closed
>
> So far, the existing caching mechanisms do not work on dataset operations 
> when using map/filter with lambda functions. For example, 
> {code}
>   test("persist and then map/filter with lambda functions") {
>     val f = (i: Int) => i + 1
>     val ds = Seq(1, 2, 3).toDS()
>     val mapped = ds.map(f)
>     mapped.cache()
>     val mapped2 = ds.map(f)
>     assertCached(mapped2)
>   }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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

Reply via email to