Home > Blockchain >  How to use multiple cache sink in a single data flow and use outputs of both the sinks in a pipeline
How to use multiple cache sink in a single data flow and use outputs of both the sinks in a pipeline

Time:10-13

I am having two cache sinks in a dataflow, when selecting write to activity output for both the sinks throws validation error: Multiple Cache sinks found with output set to 'true'. Output for only one sink is supported. Is there any workaround / Solution to use output of both the sinks in a single pipeline?

CodePudding user response:

Only 1 cached sink can send output from a data flow. Would it be possible to combine or union multiple data streams into a single cache sink in your data flow?

  • Related