You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2015/04/28 08:27:07 UTC

[jira] [Commented] (SPARK-7181) External Sorter merge with aggregation go to an infinite loop when we have a total ordering

    [ https://issues.apache.org/jira/browse/SPARK-7181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14516489#comment-14516489 ] 

Apache Spark commented on SPARK-7181:
-------------------------------------

User 'chouqin' has created a pull request for this issue:
https://github.com/apache/spark/pull/5737

> External Sorter merge with aggregation go to an infinite loop when we have a total ordering
> -------------------------------------------------------------------------------------------
>
>                 Key: SPARK-7181
>                 URL: https://issues.apache.org/jira/browse/SPARK-7181
>             Project: Spark
>          Issue Type: Bug
>          Components: Spark Core
>    Affects Versions: 1.3.1
>            Reporter: Qiping Li
>            Priority: Critical
>             Fix For: 1.3.2, 1.4.0
>
>
> In the function {{mergeWithAggregation}} of {{ExternalSorter.scala}}, when there is a total ordering for keys K, values of the same key in the sorted iterator should be combined. Currently this is done by this:
> {code}
>   val elem = sorted.next()
>   val k = elem._1
>   var c = elem._2
>   while (sorted.hasNext && sorted.head._1 == k) {
>     c = mergeCombiners(c, sorted.head._2)
>   }
> {code}
> This will go to an infinite loop when there are more than 1 values with the same key. `sorted.next()` should be called to fix this.



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