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

FIX-#7346: Handle execution on Dask workers to avoid creating conflic… #7347

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Update modin/tests/core/storage_formats/pandas/test_internals.py
Co-authored-by: Iaroslav Igoshev <Poolliver868@mail.ru>
  • Loading branch information
data-makerman and YarShev authored Jul 29, 2024
commit 6eb544242aa57511083c8054911f9ce476abcd21
8 changes: 8 additions & 0 deletions modin/tests/core/storage_formats/pandas/test_internals.py
Original file line number Diff line number Diff line change
Expand Up @@ -2785,6 +2785,14 @@ def dataframe_test_default_property(df):
):
pd.DataFrame([[1]]).dataframe_test_default_property

@pytest.mark.parametrize(
"modify_config",
[
{Engine: "Ray"},
{Engine: "Dask"},
],
indirect=True,
)
def test_daemonic_worker_protection():
data-makerman marked this conversation as resolved.
Show resolved Hide resolved
# Test for issue #7346, wherein some operations on Dask cause a second submission of a task to
# the Dask client from the worker scope, which should not cause a new client to be created
Expand Down