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 would like to gradually move all the horizon planning work to the operators instead of the logical plan.
A horizon is what we call in the planner the stuff that is outside the FROM ... WHERE clause. If we are able to send the whole query to a single shard, we don't do much more planning - we simply add the rest of the clauses (projections, ordering, limit, aggregation and more) to the query and we are done.
If we can't delegate everything to MySQL, we do more planning, and this is what we call horizon planning.
Feature Description
We would like to gradually move all the horizon planning work to the operators instead of the logical plan.
A horizon is what we call in the planner the stuff that is outside the FROM ... WHERE clause. If we are able to send the whole query to a single shard, we don't do much more planning - we simply add the rest of the clauses (projections, ordering, limit, aggregation and more) to the query and we are done.
If we can't delegate everything to MySQL, we do more planning, and this is what we call horizon planning.
Tracking
The text was updated successfully, but these errors were encountered: