You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Maximilian Michels (JIRA)" <ji...@apache.org> on 2015/11/03 10:58:27 UTC

[jira] [Resolved] (FLINK-2953) Chained sortPartition() calls produce incorrect results in Scala DataSet API

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

Maximilian Michels resolved FLINK-2953.
---------------------------------------
    Resolution: Fixed

> Chained sortPartition() calls produce incorrect results in Scala DataSet API
> ----------------------------------------------------------------------------
>
>                 Key: FLINK-2953
>                 URL: https://issues.apache.org/jira/browse/FLINK-2953
>             Project: Flink
>          Issue Type: Bug
>          Components: DataSet API, Scala API
>    Affects Versions: 0.9, 0.10, 1.0
>            Reporter: Fabian Hueske
>            Assignee: Fabian Hueske
>            Priority: Blocker
>             Fix For: 0.9.2, 0.10
>
>
> Chaining for {{sortPartition()}} calls does not work correctly in Scala DataSet API.
> {code}
> val x: DataSet[(Int, Int, Int)] = ... //
> x
>   .sortPartition(0, Order.DESCENDING)
>   .sortPartition(2, Order.ASCENDING)
>   .print()
> // result
> (1,2,3)
> (1,3,4)
> (1,2,5)
> (3,7,8)
> // should be
> (3,7,8)
> (1,2,3)
> (1,3,4)
> (1,2,5)
> {code}
> The same program in the Java DataSet API works correctly.



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