Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
does anybody know how to end a Endless tRunJob? Can i define an exit condition or something like that? I tried it with OnComponentOk and tDie, but it does not work that way.
Regards
Hi,
If the sub job is running in an infinite loop, then you will have to add the exit condition also in the same job. The reason is that the control will never come back to parent job unless the sub job works independently. So always add an exit rout when you are trying to create a loop within the same job flow.
Warm Regards,
Nikhil Thampi
Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Hi,
If the sub job is running in an infinite loop, then you will have to add the exit condition also in the same job. The reason is that the control will never come back to parent job unless the sub job works independently. So always add an exit rout when you are trying to create a loop within the same job flow.
Warm Regards,
Nikhil Thampi
Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Yeah, i figured that out. But how or Where can i define a exit condition?