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

Make combine_similar less greedy for merge #334

Merged
merged 17 commits into from
Oct 16, 2023
Prev Previous commit
Next Next commit
Move import
  • Loading branch information
phofl committed Oct 13, 2023
commit c9031ee87ed73c8c355b92fe7a310cb9da0e1a6c
2 changes: 1 addition & 1 deletion dask_expr/_merge.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import functools

import pandas as pd
from dask.core import flatten
from dask.dataframe.dispatch import make_meta, meta_nonempty
from dask.dataframe.shuffle import partitioning_index
Expand Down Expand Up @@ -407,6 +406,7 @@ def _simplify_up(self, parent):


def create_assign_index_merge_transfer():
import pandas as pd
from distributed.shuffle._core import ShuffleId
from distributed.shuffle._merge import merge_transfer

Expand Down
Loading