You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge?
I'm trying to collect known issues related to error handling in datafusion.
So far I can see different categories which can be improved
DataFusion heavily relies on Rust Result<T, E> and sometimes its hard to identify context where the actual error is happening, the situation becomes even worse for downstream projects.
We can try to address some of the issues with implementing a generic error macros that will be used for handling DF errors. Having done that allows to process errors in standard unified way, experiment with stacktraces and other details needed to be exposed for the end user.
Is your feature request related to a problem or challenge?
I'm trying to collect known issues related to error handling in datafusion.
So far I can see different categories which can be improved
Result<T, E>
and sometimes its hard to identify context where the actual error is happening, the situation becomes even worse for downstream projects.datafusion-common
crate #3313datafusion-row
crate #3317datafusion-physical-expr
crate #3316Error
s in the happy path #7552Describe the solution you'd like
We can try to address some of the issues with implementing a generic error macros that will be used for handling DF errors. Having done that allows to process errors in standard unified way, experiment with stacktraces and other details needed to be exposed for the end user.
plan_err!
error macro #7115internal_err!
error macro #7293not_impl_err
error macro #7340exec_err!
error macro #7361arrow_err!
macros, optional backtrace to ArrowError #8586schema_err!
error macros with optional backtrace #8620resources_err!
error macro #11374Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: