1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
from __future__ import annotations
import logging
import pytest
from distributed import Client
from distributed.compatibility import WINDOWS
from distributed.deploy.subprocess import (
SubprocessCluster,
SubprocessScheduler,
SubprocessWorker,
)
from distributed.utils_test import gen_test, new_config_file
@pytest.mark.skipif(WINDOWS, reason="distributed#7434")
@gen_test()
async def test_basic():
async with SubprocessCluster(
asynchronous=True,
dashboard_address=":0",
scheduler_kwargs={"idle_timeout": "5s"},
worker_kwargs={"death_timeout": "5s"},
) as cluster:
async with Client(cluster, asynchronous=True) as client:
result = await client.submit(lambda x: x + 1, 10)
assert result == 11
assert cluster._supports_scaling
assert "Subprocess" in repr(cluster)
@pytest.mark.skipif(WINDOWS, reason="distributed#7434")
@gen_test()
async def test_n_workers():
async with SubprocessCluster(
asynchronous=True, dashboard_address=":0", n_workers=2
) as cluster:
async with Client(cluster, asynchronous=True) as client:
assert len(cluster.workers) == 2
result = await client.submit(lambda x: x + 1, 10)
assert result == 11
assert cluster._supports_scaling
assert "Subprocess" in repr(cluster)
@pytest.mark.skipif(WINDOWS, reason="distributed#7434")
@gen_test()
async def test_scale_up_and_down():
async with SubprocessCluster(
n_workers=0,
silence_logs=False,
dashboard_address=":0",
asynchronous=True,
) as cluster:
async with Client(cluster, asynchronous=True) as c:
assert not cluster.workers
cluster.scale(2)
await c.wait_for_workers(2)
assert len(cluster.workers) == 2
cluster.scale(1)
await cluster
assert len(cluster.workers) == 1
@pytest.mark.skipif(WINDOWS, reason="distributed#7434")
@gen_test()
async def test_raise_if_scheduler_fails_to_start():
with pytest.raises(RuntimeError, match="Scheduler failed to start"):
async with SubprocessCluster(scheduler_port=-1, asynchronous=True):
pass
@pytest.mark.skipif(WINDOWS, reason="distributed#7434")
@pytest.mark.slow
@gen_test()
async def test_subprocess_cluster_does_not_depend_on_logging():
with new_config_file(
{"distributed": {"logging": {"distributed": logging.CRITICAL + 1}}}
):
async with (
SubprocessCluster(asynchronous=True, dashboard_address=":0") as cluster,
Client(cluster, asynchronous=True) as client,
):
result = await client.submit(lambda x: x + 1, 10)
assert result == 11
@pytest.mark.skipif(
not WINDOWS, reason="Windows-specific error testing (distributed#7434)"
)
def test_raise_on_windows():
with pytest.raises(RuntimeError, match="not support Windows"):
SubprocessCluster()
with pytest.raises(RuntimeError, match="not support Windows"):
SubprocessScheduler()
with pytest.raises(RuntimeError, match="not support Windows"):
SubprocessWorker(scheduler="tcp://127.0.0.1:8786")
|