-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(dask): port the dask backend to the new execution model (#8005)
Reimplementation of the dask backend on top of the new pandas executor. I had to adjust the pandas backend to support extending. This way the new dask implementation turned out to be pretty tidy. There are a couple of features which are not implemented using proper dask constructs, but rather have a fallback to local execution using pandas. The most notable are the window functions. The previous dask implementation supported just a couple of window cases, but this way we have full coverage at least. Thanks to the new pandas base we have a wider feature coverage, see the removed xfails in the test suite.
- Loading branch information
Showing
70 changed files
with
2,096 additions
and
6,965 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,10 +73,10 @@ jobs: | |
extras: | ||
- clickhouse | ||
- examples | ||
# - name: dask | ||
# title: Dask | ||
# extras: | ||
# - dask | ||
- name: dask | ||
title: Dask | ||
extras: | ||
- dask | ||
- name: pandas | ||
title: Pandas | ||
extras: | ||
|
@@ -438,13 +438,13 @@ jobs: | |
- "3.9" | ||
- "3.11" | ||
backend: | ||
# - name: dask | ||
# title: Dask | ||
# deps: | ||
# - "dask[array,dataframe]@2022.9.1" | ||
# - "[email protected]" | ||
# extras: | ||
# - dask | ||
- name: dask | ||
title: Dask | ||
deps: | ||
- "dask[array,dataframe]@2022.9.1" | ||
- "[email protected]" | ||
extras: | ||
- dask | ||
- name: postgres | ||
title: PostgreSQL | ||
deps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.