Ben Horsburgh
02/22/2024, 9:25 AMon_node_error
and on_pipeline_error
but neither of these appear to be triggered if there is a data load error. Is there currently any way to catch these errors gracefully, or should we raise a feature request for on_catalog_error
or similar?Iñigo Hidalgo
02/22/2024, 9:47 AM_load
method, right? catch the error before the outer load
raises the dataseterror
if it's general dataset load error handling, i will keep an eye on the thread in case somebody has any ideas 🤣Ben Horsburgh
02/22/2024, 9:56 AMNok Lam Chan
02/22/2024, 10:30 PM_run_node_sequential()
load_data()
_call_node_run()
try:
node.run(inputs) # data already loaded earlier
except:
on_node_error
I suspect it should try to catch this in outer function, probably even earlier in run_node
Nok Lam Chan
02/22/2024, 10:33 PMon_pipeline_error
doesn't work too, though admittedly I have never seen this error before, likely room for improvementNok Lam Chan
02/22/2024, 10:38 PMon_pipeline_error
get triggered, though I still think on_node_error
doesn't quite capture what one expect during a node runRichard Purvis
01/20/2025, 9:00 AMNok Lam Chan
01/20/2025, 10:05 AM