-
-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: error path handling #425
Comments
error handling in SSIS is done at controlflow level. But it has nothing for the datafow. If the dataflow, the control flow handles it, and take the proper decision. ETL.NET is the replacement of the dataflow, and the external dotnet code that triggers it is the replacement of the control flow. If any failure, the process will fail, then the part that triggered the failed ETL.NET process will get all the details about the failure in the response. This said, you can handle exception your self within |
It is clear about error handling in Should the whole chained statement be wrapped in |
like in SSIS or many other ETL, in this situation, your whole process will fail, and you will have to catch it from outside control flow like described here: https://paillave.github.io/Etl.Net/docs/tutorials/trackAndCheck#get-the-error-if-it-occurs. The detailed behavior of the engine is described here: https://paillave.github.io/Etl.Net/docs/quickstart/principle#detailed-principle
|
Thank you, @paillave |
ETLs like SSIS supports error handling by calling/executing routines to handle failures:
Also there is Event handler for all errors, like in pic below:
Is there ways to do similar routines with Etl.Net?
The text was updated successfully, but these errors were encountered: