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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Multiple ok triggers before running next job with tRunJob

Hi!

 

Seems what I'm trying to do is not possible, so I'm missing something. I want three jobs to run (I start them through tRunJob's) then I want the fourth job to start, but not before all three of the previous ones has finished ok. I tried to use the trigger "sub ok" but it seem I can only set that for one of the jobs. See below. How should this be done in Talend? As you can see, I try to push a second trigger line to the fourth job but it does not work.

0683p000009M84T.png

 

Regards

/PatrikLager

 

 

Labels (2)
1 Reply
Anonymous
Not applicable
Author

Hi
It is easy to achieve it with tParallelize component, you can read a scenario in this page
https://help.talend.com/reader/vn0o8XYVXXNgJkRtWjet9A/r~Y3kooRB1iEt1GtfwfA3Q
However, this component is only available on Talend enterprise subscription product.
With open studio, you can create another child job to execute the three jobs. eg
main job
tRunJob1--onsubjobok--tRunJob2

tRunJob1: execute job1, job2, job3
tRunJob2: execute job4

Regards
Shong