You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@beam.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2021/02/09 21:51:00 UTC

[jira] [Work logged] (BEAM-11784) Java pipeline proto serialization does not ensure topological ordering of root transforms

     [ https://issues.apache.org/jira/browse/BEAM-11784?focusedWorklogId=550435&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-550435 ]

ASF GitHub Bot logged work on BEAM-11784:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 09/Feb/21 21:50
            Start Date: 09/Feb/21 21:50
    Worklog Time Spent: 10m 
      Work Description: kennknowles commented on pull request #13942:
URL: https://github.com/apache/beam/pull/13942#issuecomment-776266990


   R: @chamikaramj @robertwb 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 550435)
    Time Spent: 20m  (was: 10m)

> Java pipeline proto serialization does not ensure topological ordering of root transforms
> -----------------------------------------------------------------------------------------
>
>                 Key: BEAM-11784
>                 URL: https://issues.apache.org/jira/browse/BEAM-11784
>             Project: Beam
>          Issue Type: Bug
>          Components: sdk-java-core
>            Reporter: Kenneth Knowles
>            Assignee: Kenneth Knowles
>            Priority: P1
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> Seen these root orders when running {{ImpulseTest.testImpulse}}:
>  - {{["Impulse", "PAssert$0", "FlatMapElements"]}}
>  - {{["FlatMapElements", "PAssert$0", "Impulse"]}}
> Pipeline is:
> {code}
> PCollection<Integer> result =
>         p.apply(Impulse.create())
>             .apply(
>                 FlatMapElements.into(TypeDescriptors.integers())
>                     .via(impulse -> Arrays.asList(1, 2, 3)));
>     PAssert.that(result).containsInAnyOrder(1, 2, 3);
> {code}
> The topological order is linear and is neither of the above.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)