Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Vijay_K_N
Contributor
Contributor

Error Recovery in talend

Hi ,

we have error recovery in talend ..

If any subjob fails we can run from that recovery point in TAC.(if we enable recovery point OnSubjobOK link)

but I didnt find this in TMC ,anyone help me on this ?

Labels (2)
2 Replies
Anonymous
Not applicable

We no longer provide this functionality as it is now considered bad practice. Jobs should be built to not fail or to fail gracefully if they do fail.

jlolling
Creator III
Creator III

This is a VERY DANGEROUS FUNCTIONALITY and I hope Talend will get rid of it because it also clutters the job code.

The problem is, jumping just to a specific sub job does not take into account there are some expected processing before and all the potentially created variables in the globalMap or context are not filled and empty.

It also makes job testing much much more complex.

Conclusion: FORGET this feature as soon as possible!

 

The better way is to use more jobs with less functionality and put them into a job chain.

You can also get values from an embed job by the tRunJob output flow (filled inside the embed job with tBufferOutput).