Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
1.3.1
-
None
Description
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:
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) }
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.