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.
When using the sql() method on the BallistaContext, all the tables registered on the context are transformed into execution plans. We should find a way to avoid that, because scanning datasources can be an expensive operation.
Describe the solution you'd like
I would like a way to register the tables on the Datafusion context without transforming them to ExecutionPlans.
Additional context #1012 makes the scan operation async. This propagated to the BallistaContext.sql(), which was not expected.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
When using the
sql()
method on theBallistaContext
, all the tables registered on the context are transformed into execution plans. We should find a way to avoid that, because scanning datasources can be an expensive operation.Describe the solution you'd like
I would like a way to register the tables on the Datafusion context without transforming them to
ExecutionPlan
s.Additional context
#1012 makes the scan operation async. This propagated to the
BallistaContext.sql()
, which was not expected.The text was updated successfully, but these errors were encountered: