Skip to content

Commit

Permalink
Enable dask-expr for tpch queries (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl authored Oct 5, 2023
1 parent 99a8270 commit cbdb56c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
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

0 comments on commit cbdb56c

Please sign in to comment.