You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Andrew Or (JIRA)" <ji...@apache.org> on 2014/09/10 00:17:28 UTC

[jira] [Updated] (SPARK-3409) Avoid pulling in Exchange operator itself in Exchange's closures

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

Andrew Or updated SPARK-3409:
-----------------------------
    Fix Version/s: 1.1.1

> Avoid pulling in Exchange operator itself in Exchange's closures
> ----------------------------------------------------------------
>
>                 Key: SPARK-3409
>                 URL: https://issues.apache.org/jira/browse/SPARK-3409
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>    Affects Versions: 1.1.0
>            Reporter: Reynold Xin
>            Assignee: Reynold Xin
>             Fix For: 1.1.1, 1.2.0
>
>
> {code}
>         val rdd = child.execute().mapPartitions { iter =>
>           if (sortBasedShuffleOn) {
>             iter.map(r => (null, r.copy()))
>           } else {
>             val mutablePair = new MutablePair[Null, Row]()
>             iter.map(r => mutablePair.update(null, r))
>           }
>         }
> {code}
> The above snippet from Exchange references sortBasedShuffleOn within a closure, which requires pulling in the entire Exchange object in the closure. 
> This is a tiny teeny optimization.



--
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