Skip to content

Commit b3862cf

Browse files
authored
Move Dask config overrides to sql.yaml (#1260)
* Move dataframe overrides to sql.yaml * Un-xfail test_xgboost_training_prediction on win32 * Revert "Un-xfail test_xgboost_training_prediction on win32" This reverts commit 16ca14f. * Move overrides to import-time * Add config overrides back to conftest.py
1 parent 0540813 commit b3862cf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

dask_sql/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,17 @@
44

55
import importlib.metadata
66

7+
from dask.config import set
8+
79
from . import config
810
from .cmd import cmd_loop
911
from .context import Context
1012
from .datacontainer import Statistics
1113
from .server.app import run_server
1214

15+
# TODO: get pyarrow strings and p2p shuffle working
16+
set(dataframe__convert_string=False, dataframe__shuffle__method="tasks")
17+
1318
__version__ = importlib.metadata.version(__name__)
1419

1520
__all__ = [__version__, cmd_loop, Context, run_server, Statistics]

0 commit comments

Comments
 (0)