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
https://duckdb.org/2024/11/14/optimizers.html#filter-pull-up--filter-pushdown has a nice description of filter pull up, an optimization in DuckDB that I'd like to implement in dask-expr as a learning exercise. dask-expr currently implements predicate push down, where a read_parquet followed by a filter on the values of a column is translated into a read_parquet with the filters set appropriately:
The idea of a predicate pull-up is similar, but applied to the other side of an join / merge:
left=pd.read_parquet("left.parquet")
right=pd.read_parquet("right.parquet")
left=left[left["name"] =="Alice"]
# Both left and right should get the `filters=` pushed down to the read_parquetresult=left.merge(right, on="name", how="inner")
We know that the result of the inner join will only have name=="Alice" since the left DataFrame will only have name=="Alice" thanks to the preceding filter. Because the filter column is also the join column, dask-expr should be able to pull that filter all the way up through the merge and then push it down to the right = pd.read_parquet, just like it does for the left side.
https://github.com/dask/dask-expr/compare/main...TomAugspurger:dask-expr:tom/predicate-pull-up?expand=1 has an initial cut at this that I'll turn into a PR soon. The basic idea is to implement Merge._simplify_down to check for the prerequisites for this optimization (I've only implemented a very specific case, but I think the main / exclusive requirement is that there's a join and filter on the same column). I think that _simplify_down is the appropriate place to do this. IIUC, the Merge is "above" the read_parquet. We want to take the Filter that's on some side of the Merge, pull it up to the `Merge, and push it down the other side.
(I don't know whether this is an important optimization in practice, but it seemed like a pretty good problem to learn a bit about how dask-expr works).
The text was updated successfully, but these errors were encountered:
I am a little worried that the filters will fight with each other if you have to push them up more than one layer, but haven't thought super deeply about this yet generally speaking.
We might want a different Filter class or something similar to demonstrate that this filter isn't supposed to move down but only up, but this probably needs a bit more thought.
The special case you have here is definitely valid though
We might want a different Filter class or something similar to demonstrate that this filter isn't supposed to move down but only up, but this probably needs a bit more thought.
We might need something similar to is_filter_pushdown_available but for filters being pulled up, but I'll try to avoid that initially. My hope is that if we have something like
We'll be able to determine that it's safe to pull the filter up to the join (through the .reset_index) because it's safe to pass the filter down. In other words, I'm hoping that _filter_passthrough=True is valid going up and down. But I haven't looked through _filter_passthrough_available in detail yet.
https://duckdb.org/2024/11/14/optimizers.html#filter-pull-up--filter-pushdown has a nice description of filter pull up, an optimization in DuckDB that I'd like to implement in dask-expr as a learning exercise. dask-expr currently implements predicate push down, where a
read_parquet
followed by a filter on the values of a column is translated into aread_parquet
with thefilters
set appropriately:is optimized to
The idea of a predicate pull-up is similar, but applied to the other side of an join / merge:
We know that the result of the inner join will only have
name=="Alice"
since theleft
DataFrame will only havename=="Alice"
thanks to the preceding filter. Because the filter column is also the join column, dask-expr should be able to pull that filter all the way up through the merge and then push it down to theright = pd.read_parquet
, just like it does for theleft
side.https://github.com/dask/dask-expr/compare/main...TomAugspurger:dask-expr:tom/predicate-pull-up?expand=1 has an initial cut at this that I'll turn into a PR soon. The basic idea is to implement
Merge._simplify_down
to check for the prerequisites for this optimization (I've only implemented a very specific case, but I think the main / exclusive requirement is that there's a join and filter on the same column). I think that_simplify_down
is the appropriate place to do this. IIUC, theMerge
is "above" theread_parquet
. We want to take theFilter
that's on some side of theMerge
, pull it up to the `Merge, and push it down the other side.(I don't know whether this is an important optimization in practice, but it seemed like a pretty good problem to learn a bit about how dask-expr works).
The text was updated successfully, but these errors were encountered: