Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I replicate the data stream by two.
Then I need to combine them into one.
Only the first component (tJavaRow_2) has connected correctly, the second (
tJavaRow_1)
cannot connect. How then to connect streams?Hi
It is not allowed to create a cycle flow in a job. As a workaround, cache the data in memory using tHashOutput, read the data back from memory in next subjob using tHashInput. eg:
......tJavaRow_2---main--tHashOutput1
orgCode--main--tHashOutput2
|onsubjobok
tHashInput1(read from tHashOutput1)--- tUnite---
tHashInput2(read from tHashOutput2)--tJavaRow--1....|