如果有一个源应用程序(名为A-Source),它有多个通道来发送消息,例如。 channelA.destination = b-topic,channelB.destination = c-topic。 b-topic的接收器是B-Sink,因为c-topic是C-Sink。 我如何构建我的流,将它们描述为:A | B和A | C?如果是这样,我认为我的A-Source代码的一部分在每个流中都很有用。
所以我的问题是:SCDF流DSL如何处理单个源应用程序的多次点击。
答案 0 :(得分:0)
您可以在Stream DSL中使用指定的频道目的地。
例如:
dataflow:>stream create tap1 --definition ":b-topic > B-SInk"
dataflow:>stream create tap2 --definition ":c-topic > C-SInk"