09-24-2018 11:02 PM
Hi ,
I am new to SnapLogic and going through some of training videos and materials. Is there any support for transaction for group of Snaps? This is not database transaction. But for any snap. For example if I have to do 5 step activities using 5 different snaps. To complete the integration all snaps have to be executed successfully. In case if any one of the snap fails, all remaining 4 snaps have to fail. Can you advice, how this can be achieved?
Thanks and regards,
G. Ponnusamy
09-25-2018 08:25 AM
Generally, by fail, ONE snap fails, if it precedes others. It may cause other snaps to fail, but you can’t depend on that. Sometimes other snaps also might fail. There are TWO ways to do this through snaps ONLY…
09-25-2018 08:27 AM
BTW Such an error is FATAL, so the entire process fails, and reports it to the caller. If you want it to be a NON fatal error, you can tell the snaps to output to an error view, for #1, and for #2, you can use a filter to stop future processing of that document, or a copy and join to bypass snaps.
10-01-2018 08:20 AM
Thank Stephen for the details.