Skip to content
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

Enable dask-expr for tpch queries #1046

Merged
merged 3 commits into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AB_environments/AB_baseline.conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies:
- pandas ==2.1.1
- dask ==2023.9.2
- distributed ==2023.9.2
- dask-expr
- dask-labextension ==7.0.0
- dask-ml ==2023.3.24
- fsspec ==2023.9.1
Expand Down
2 changes: 2 additions & 0 deletions AB_environments/AB_sample.conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ dependencies:
- pandas ==2.1.1
- dask ==2023.9.2
- distributed ==2023.9.2
- dask-expr
- dask-labextension ==7.0.0
- dask-ml ==2023.3.24
- fsspec ==2023.9.1
Expand Down Expand Up @@ -56,3 +57,4 @@ dependencies:
# Read README.md for troubleshooting.
- git+https://github.com/dask/dask@da256320ef0167992f7183c3a275d092f5727f62
- git+https://github.com/dask/distributed@285893037fe9eac83f363611b4799168aabb3992
- git+https://github.com/dask-contrib/dask-expr
1 change: 1 addition & 0 deletions ci/environment-git-tip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ dependencies:
- git+https://github.com/dask/dask
- git+https://github.com/dask/distributed
- git+https://github.com/dask/zict
- git+https://github.com/dask-contrib/dask-expr
1 change: 1 addition & 0 deletions ci/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies:
- pandas ==2.1.1
- dask ==2023.9.2
- distributed ==2023.9.2
- dask-expr
- dask-labextension ==7.0.0
- dask-ml ==2023.3.24
- fsspec ==2023.9.1
Expand Down
4 changes: 2 additions & 2 deletions tests/benchmarks/test_tpch.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import os
from datetime import datetime

import dask.dataframe as dd
import dask_expr as dd

DATASETS = {
"scale 100": "s3://coiled-runtime-ci/tpch_scale_100/",
"scale 1000": "s3://coiled-runtime-ci/tpch_scale_1000/",
"scale 1000": "s3://coiled-runtime-ci/tpch-scale-1000/",
}

enabled_dataset = os.getenv("TPCH_SCALE")
Expand Down
Loading