cancel
Showing results for 
Search instead for 
Did you mean: 

How to resolve below scenario?

former_member241220
Participant
0 Kudos

Hi Experts,

I have requirement such as I have a job it contains 3 dataflows. When I execute a job,1 dataflow was success and 2 nd data flow was failed. but my job should not stop here. Job should be skip 2nd data flow and process 3rd data flow and complete the job.

Can anyone provide how to do this requirement.

I hope you understand my requirement.

Thanks,Murali

mageshwaran_subramanian
Active Contributor
0 Kudos

I'm curious! , why do you want to do that?

Accepted Solutions (1)

Accepted Solutions (1)

former_member208402
Active Contributor
0 Kudos

Hi Murali,

Take each dataflow in a try & catch block. Your flow should look like this.

Try-->DF1-->catch-->Try-->DF2-->Catch-->Try-->DF3-->Catch.

Thanks,

Ravi kiran.

Answers (2)

Answers (2)

Former Member

Hi Murali,

Yes, you need to put each dataflow into separate try-catch block so that for any dataflow's failure, the whole job won't be stopped.

If you want, you can place your own logic in Catch blocks to deal with the failure. Else it is fine without anything in catch block.

Thanks,

Soumyadeb Halder

former_member27665
Active Participant
0 Kudos

Place the 3rd dataflow in Catch ?