-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support latest dask.dataframe with query planning (dask-expr) #284
Comments
Hi, any updates on the integration of |
An initial patch supporting dask with query planning was merged in #285. So for now using the latest dask-geopandas from the main branch (not yet released, so something like |
This preliminary support has been released in dask-geopandas 0.4.0 (https://github.com/geopandas/dask-geopandas/releases/tag/v0.4.0) |
The
2024.2.0
release of Dask has deprecated the "legacy"dask.dataframe
API. They are building a new API with "Query Planning" based on new high-level expressions (instead of the current HighLevelGraph), which currently lives in thedask-expr
package.It can be enabled through
dask.config.set({'dataframe.query-planning': True})
.The upcoming
2024.3.0
release (dask/community#366) plans to enable this by default (but you can still turn it off for now).Given that dask-geopandas is tightly integrated with
dask.dataframe
, we will have to update to use the newdask_expr
backend.For released versions of dask-geopandas, users will have to upper pin dask or disable the option for now.
(for reference, a similar issue on the cudf side rapidsai/cudf#15027 (they also have a subclass), and their PR to add basic support: rapidsai/cudf#14805)
The text was updated successfully, but these errors were encountered: