I have a stream, wherein there is a source->processor1->processor2->Sink1
I need to push the output of processor1 to another Sink instance (i.e. Sink2).
I need something like
______Processor2-----Sink1
|
Source-->Processor1--
|______Sink2
can we bind processor1 output to processor2 and Sink2
I tried binding to multiple exchanges by giving multiple names separated by ; but did not work.
spring:
cloud:
stream:
function:
bindings:
processor1-in-0: srcchannel
processor1-out-0: proc2channel; sink2channel
default-binder: rabbit