08-26-2020 12:13 PM
I have configured error pipeline but the error is not passing into input view. Need help to configure this. Thanks
error pipe_2020_08_27.slp (2.2 KB) rest api_2020_08_27.slp (2.7 KB)
08-26-2020 12:22 PM
I imported your pipelines. They work as expected. The error is being transformed by the Mapper in the error pipeline: the entire response is under “path”.
08-26-2020 01:15 PM
thanks @ptaylor.
below error when validating parent pipeline
mapper config
08-26-2020 03:13 PM
There is no Mapper in the main pipeline you attached to your first post. Did you add one? You can’t process errors that were sent to the error pipeline in the main pipeline. That’s what the error pipeline is for. Try doing all the error processing there.
08-26-2020 03:56 PM
For pipelines which use an error pipeline, it is possible to do custom error handling for some snaps before passing the error document to the error pipeline. For example,
the Postgres Insert here does not directly send its error to the error pipeline, it is configured to “Route Error Data to Error View”. The error goes to a mapper which adds some additional metadata to the error document. Right-clicking on the mapper gives an option to “Link Output to Error Pipeline” which makes the mapper’s output go to the error pipeline. This allows for custom error handling while using an error pipeline.