Hello, I would like to add some custom error handl...
# questions
b
Hello, I would like to add some custom error handling to my kedro pipelines e.g if one of the input tables is empty, stop the pipeline execution. My plan was to raise a custom error and catch it in the
___main___.py
, but i realize the
kedro run
command does not go through this main script What would be the best way to do it? Thanks!
d
We have an
on_pipeline_error
hook is that what you’re looking for?
b
Seems to be what i’m looking for. Will look into it, thanks!
❤️ 1