Re: Multiple operators to the same sink

2018-11-12 Thread Timo Walther
Hi, I'm not quite sure if I understand your problem correctly. But your use case sounds like a typical application of a union operation. What do you mean with "knowledge of their destination sink"? The operators don't need to be aware of the destination sink. The only thing that needs to be

Multiple operators to the same sink

2018-11-08 Thread burgesschen
Hi Guys! I'm designing a topology where multiple operators should forward the messages to the same sink. For example I have Operator A,B,C,D,E. I want A,B,C to forward to Sink1 and D, E to forward to Sink2. My options are 1. Union A, B and C. then add Sink1 to them. Similarly for D and E. Howev