Skip to content

Commit

Permalink
work around incident
Browse files Browse the repository at this point in the history
  • Loading branch information
fjetter committed Apr 17, 2024
1 parent a8da566 commit 10278e1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
except ImportError: # dask <2023.6.0
from contextlib import nullcontext as span_ctx

# https://github.com/coiled/platform/issues/5329
dask.config.set({"coiled.use_dashboard_https": False})


logger = logging.getLogger("benchmarks")
logger.setLevel(logging.INFO)
Expand Down
3 changes: 3 additions & 0 deletions tests/tpch/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
# Global Options #
##################

# https://github.com/coiled/platform/issues/5329
dask.config.set({"coiled.use_dashboard_https": False})


def pytest_addoption(parser):
parser.addoption("--local", action="store_true", default=False, help="")
Expand Down
1 change: 1 addition & 0 deletions tests/tpch/test_pyspark.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def cluster_spec(cluster_spec, scale, shutdown_on_close):
if scale == 10000:
return {
"worker_vm_types": ["m6i.2xlarge"],
"account": "dask-engineering",
"n_workers": 32 * 5,
"worker_disk_size": 200,
**everywhere,
Expand Down
1 change: 1 addition & 0 deletions tests/tpch/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def get_cluster_spec(scale: int, shutdown_on_close: bool) -> dict[str, Any]:
everywhere = dict(
idle_timeout="24h",
wait_for_workers=True,
account="dask-engineering",
scheduler_vm_types=["m6i.2xlarge"],
shutdown_on_close=shutdown_on_close,
)
Expand Down

0 comments on commit 10278e1

Please sign in to comment.