Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Igor_V
Contributor
Contributor

How to merge data streams after replicating the input stream?

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?0695b00000GeS3qAAF.jpg
Labels (3)
1 Reply
Anonymous
Not applicable

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....|