You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "kevinsun (JIRA)" <ji...@apache.org> on 2019/06/17 06:17:01 UTC

[jira] [Assigned] (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 ]

kevinsun reassigned FLINK-2953:
-------------------------------

    Assignee:     (was: kevinsun)

> 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: API / DataSet, API / Scala
>    Affects Versions: 0.9, 0.10.0, 1.0.0
>            Reporter: Fabian Hueske
>            Priority: Blocker
>             Fix For: 0.9.2, 0.10.0
>
>
> 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
(v7.6.3#76005)