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
We are currently (0.16.x) using only VolcanoPlanner to perform data access planning.
It is very common among Calcite users to split the planning phase into to cycles:
with HepPlanner (rule based planner) simplify the query
with VolcanoPlanner (cost based planner) find the best execution plan
This way we could have a faster SQL planning especially for simple queries.
Another action we could explore is to prune a few rules from VolcanoPlanner or make some "sql-complexity level" configuration, advanced users will use the full ruleset.
The text was updated successfully, but these errors were encountered:
We are currently (0.16.x) using only VolcanoPlanner to perform data access planning.
It is very common among Calcite users to split the planning phase into to cycles:
This way we could have a faster SQL planning especially for simple queries.
Another action we could explore is to prune a few rules from VolcanoPlanner or make some "sql-complexity level" configuration, advanced users will use the full ruleset.
The text was updated successfully, but these errors were encountered: