I need to implement following flow:
[Source] - > [Split]
- [IF TRUE] -> [DO SOMETHING] - [OUTPUT TO C]
- [IF FALSE] -> [DO SOMETHING ELSE] - [OUTPUT TO C]
The issue is to come back to the same destination after conditional split.
In other words, is there something opposite to "Multicast"?
I looked at Union and Merge - but it looks like it's not for this kind of things.
Thanks.
That sounds like a UnionAll to me...Why do you think UnionAll is not for this kind of thing? Do the two output (true output and the false output) downstreams change the column metadata in different ways?
thanks
wenyang
|||I may not be understaning Union All well. Doesn't it require bith streams to have some data in it? To map fields from both streams?
In my scenario - only one stream has data in the buffer at the same time.
|||There is no requirement for both inputs into a UNION ALL component to both have data. It will work perfectly well if no rows at all are passed through it - which is of course true for all components.
-Jamie
|||This worked! Thanks!
No comments:
Post a Comment