Details
-
Bug
-
Status: Resolved
-
P1
-
Resolution: Fixed
-
None
Description
Seen these root orders when running ImpulseTest.testImpulse:
- ["Impulse", "PAssert$0", "FlatMapElements"]
- ["FlatMapElements", "PAssert$0", "Impulse"]
Pipeline is:
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);
The topological order is linear and is neither of the above.
Attachments
Issue Links
- links to