Skip to content

Commit

Permalink
Merge branch 'main' into jupyterevents
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl authored Dec 20, 2024
2 parents ea5ad18 + 8005dec commit 4c977dd
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 723 deletions.
19 changes: 2 additions & 17 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,6 @@ jobs:
label: no_queue
partition: "not ci1"

# Set dataframe.query-planning: false
- os: ubuntu-latest
environment: "3.10"
label: no_expr
partition: "ci1"
- os: ubuntu-latest
environment: "3.10"
label: no_expr
partition: "not ci1"

# dask.array P2P shuffle
- os: ubuntu-latest
environment: mindeps
Expand All @@ -83,12 +73,12 @@ jobs:
- os: ubuntu-latest
environment: mindeps
label: pandas
extra_packages: [numpy=1.24, pandas=2.0, pyarrow=14.0.1]
extra_packages: [numpy=1.24, pandas=2.0, pyarrow=14.0.1, dask-expr]
partition: "ci1"
- os: ubuntu-latest
environment: mindeps
label: pandas
extra_packages: [numpy=1.24, pandas=2.0, pyarrow=14.0.1]
extra_packages: [numpy=1.24, pandas=2.0, pyarrow=14.0.1, dask-expr]
partition: "not ci1"

- os: ubuntu-latest
Expand Down Expand Up @@ -221,11 +211,6 @@ jobs:
if: ${{ matrix.label == 'no_queue' }}
run: echo "DASK_DISTRIBUTED__SCHEDULER__WORKER_SATURATION=inf" >> $GITHUB_ENV

- name: Set up dask env to disable dask-expr
shell: bash -l {0}
if: ${{ matrix.label == 'no_expr' }}
run: echo "DASK_DATAFRAME__QUERY_PLANNING=False" >> $GITHUB_ENV

- name: Print host info
# host_info.py imports numpy, which isn't a direct dependency of distributed
if: matrix.environment != 'mindeps'
Expand Down
6 changes: 0 additions & 6 deletions distributed/shuffle/__init__.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
from __future__ import annotations

from distributed.shuffle._arrow import check_minimal_arrow_version
from distributed.shuffle._merge import HashJoinP2PLayer, hash_join_p2p
from distributed.shuffle._rechunk import rechunk_p2p
from distributed.shuffle._scheduler_plugin import ShuffleSchedulerPlugin
from distributed.shuffle._shuffle import P2PShuffleLayer, rearrange_by_column_p2p
from distributed.shuffle._worker_plugin import ShuffleWorkerPlugin

__all__ = [
"check_minimal_arrow_version",
"hash_join_p2p",
"HashJoinP2PLayer",
"P2PShuffleLayer",
"rearrange_by_column_p2p",
"rechunk_p2p",
"ShuffleSchedulerPlugin",
"ShuffleWorkerPlugin",
Expand Down
Loading

0 comments on commit 4c977dd

Please sign in to comment.