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

[jira] [Closed] (FLINK-11084) Incorrect ouput after two consecutive split and select

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

Dawid Wysakowicz closed FLINK-11084.
------------------------------------
    Resolution: Fixed

Fixed in:
master: e0efabe8884f22b4a1c7ab9df3274b3fca03dcfb
1.7.2:  8b9fd7fd0fe4794608d3f41b76daabfb4888dddd
1.6.4: 0d3125d6855d91cf2e66b1b11d0bf016c16d32a1

> Incorrect ouput after two consecutive split and select
> ------------------------------------------------------
>
>                 Key: FLINK-11084
>                 URL: https://issues.apache.org/jira/browse/FLINK-11084
>             Project: Flink
>          Issue Type: Bug
>          Components: Streaming
>            Reporter: Shimin Yang
>            Assignee: Shimin Yang
>            Priority: Critical
>              Labels: pull-request-available
>             Fix For: 1.6.4, 1.7.2, 1.8.0
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> The second OutputSelector of two successive split and select are actually not rely on the first one. They are in the same array of OutputSelector in DirectedOutput.
> For example.
> outputSelector1 => \{“name1” or ”name2“}
> outputSelector2 => \{”name3“ or “name4”}
> resultStream = dataStream.split(outputSelector1).select("name2").split(outputSelector2).select("name3")
> expectedResult for input \{StreamRecord1}:
> outputSelector1 => \{”name1“}
> outputSelector2 => \{”name3“}
> resultStream => {}
> actualResult:
> resultStream => \{StreamRecord1}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)