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? Please describe what you are trying to do.
Now that we have EXPLAIN <query> we know what plan DataFusion will execute. However, there is no particularly easy way to see what actually did happen (e.g how many rows were actually read / filtered by each operator).
Describe the solution you'd like
I would like to extend DataFusion's EXPLAIN functionality to also include the ability to actually run the plan, capture metrics, and display them
I imagine something like the following (adding the executed_plan row)
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Now that we have
EXPLAIN <query>
we know what plan DataFusion will execute. However, there is no particularly easy way to see what actually did happen (e.g how many rows were actually read / filtered by each operator).Describe the solution you'd like
I would like to extend DataFusion's EXPLAIN functionality to also include the ability to actually run the plan, capture metrics, and display them
I imagine something like the following (adding the
executed_plan
row)2 rows in set. Query took 0.002 seconds.
Additional context
We probably need something like #679 completed prior to doing this?
cc @Dandandan and @andygrove
The text was updated successfully, but these errors were encountered: