-
Notifications
You must be signed in to change notification settings - Fork 72
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
Unpin dask/distributed for development #1319
Merged
charlesbluca
merged 39 commits into
dask-contrib:main
from
charlesbluca:unpin-dask-distributed
Apr 15, 2024
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
61513d3
Unpin dask/distributed for development
charlesbluca 0fb485d
First pass at unblocking dask-expr issues - replace _Frame usage
charlesbluca a83be6d
Merge remote-tracking branch 'upstream/main' into unpin-dask-distributed
charlesbluca 920cd53
First pass at unblocking pytest errors
charlesbluca 7f952d8
Disable predicate pushdown & its tests if dask-expr enabled
charlesbluca fc4a248
Make sure partition_borders is computed in limit map_partitions func
charlesbluca c3d8efe
Skip intake tests for now
charlesbluca 4f1747c
Simplify cross join logic to avoid internal graph manipulation
charlesbluca e50e30b
Round trip timeseries fixture to pandas to avoid dask-expr bug
charlesbluca 2d5c8c7
Fix skipif_dask_expr_enabled marker
charlesbluca 2fe2e3c
Ignore warnings around mismatched dtypes in joins
charlesbluca a795526
Add handling for dask-expr to test_broadcast_join
charlesbluca 8938a4a
Skip parquet stats tests for now
charlesbluca 6305a17
Skip DPP tests on dask-expr for now
charlesbluca 76b55e3
Pass ddf object as meta for test_describe_model
charlesbluca 876d282
Add dask-expr handling to test_sort_topk
charlesbluca 1e72f33
Avoid using Dask graph internals for random functions
charlesbluca fddf52f
Skip over window count tests for now
charlesbluca 72dd6ab
Skip test_over_calls and test_over_with_windows
charlesbluca 93bc5dc
Update timeseries fixture comment to acknowledge fix
charlesbluca 5cc7cc5
More detailed messages for window test skips
charlesbluca 9ba3f0a
Skip test_join_alias_w_projection for now
charlesbluca ffd695c
Un-xfail test_xgboost_training_prediction on win32
charlesbluca 73d32a2
Windows failures are still intermittent
charlesbluca 35aa225
Bump rust to 1.73 to circumvent conda sha256 errors
charlesbluca 8e6dc05
Disable query planning in GPU CI for now
charlesbluca 9563b89
Revert "Bump rust to 1.73 to circumvent conda sha256 errors"
charlesbluca b7ebab9
Use older conda-build version to try and resolve build issues
charlesbluca 9f32482
Pin to an older version of conda-build and boa
charlesbluca 207803b
Skip deadlocking xgboost test on GPU
charlesbluca 6cbe5a9
Add subset of testing with query planning disabled
charlesbluca 5a279b8
Add query-planning to job names
charlesbluca 7ce1cbf
Fix syntax errors
charlesbluca 6d762a5
Add dask-expr to CI environments, bump to pandas 2
charlesbluca 536d156
Bump dask/dask-expr to 2024.2.1/0.5 to get around aggregation bug
charlesbluca 53c6af5
Bump dask / dask-expr to 2024.3.1 / 1.0.5 to resolve drop bug
charlesbluca 8d1d107
Bump dask / dask-expr to 2024.4.1 / 1.0.11 to resolve head bug
charlesbluca 4a64319
Remove dask-expr workaround from timeseries fixture
charlesbluca 99a5745
Unpin sqlalchemy in python 3.9 CI environment
charlesbluca File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
python>=3.9 | ||
dask==2024.1.1 | ||
dask>=2024.4.1 | ||
pandas>=1.4.0 | ||
jpype1>=1.0.2 | ||
openjdk>=8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,9 @@ cd "$WORKSPACE" | |
# Determine CUDA release version | ||
export CUDA_REL=${CUDA_VERSION%.*} | ||
|
||
# TODO: remove once RAPIDS 24.06 has support for query planning | ||
export DASK_DATAFRAME__QUERY_PLANNING=false | ||
|
||
################################################################################ | ||
# SETUP - Check environment | ||
################################################################################ | ||
|
@@ -61,4 +64,4 @@ conda config --show-sources | |
conda list --show-channel-urls | ||
|
||
rapids-logger "Python py.test for dask-sql" | ||
py.test $WORKSPACE -n 4 -v -m gpu --runqueries --rungpu --junitxml="$WORKSPACE/junit-dask-sql.xml" --cov-config="$WORKSPACE/.coveragerc" --cov=dask_sql --cov-report=xml:"$WORKSPACE/dask-sql-coverage.xml" --cov-report term | ||
py.test $WORKSPACE -n $PARALLEL_LEVEL -v -m gpu --runqueries --rungpu --junitxml="$WORKSPACE/junit-dask-sql.xml" --cov-config="$WORKSPACE/.coveragerc" --cov=dask_sql --cov-report=xml:"$WORKSPACE/dask-sql-coverage.xml" --cov-report term | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice, good change. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
import pandas as pd | ||
import prompt_toolkit | ||
from packaging.version import parse as parseVersion | ||
|
||
_pandas_version = parseVersion(pd.__version__) | ||
_prompt_toolkit_version = parseVersion(prompt_toolkit.__version__) | ||
|
||
INDEXER_WINDOW_STEP_IMPLEMENTED = _pandas_version >= parseVersion("1.5.0") | ||
PANDAS_GT_200 = _pandas_version >= parseVersion("2.0.0") | ||
|
||
# TODO: remove if prompt-toolkit min version gets bumped | ||
PIPE_INPUT_CONTEXT_MANAGER = _prompt_toolkit_version >= parseVersion("3.0.29") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be interested to know what issue this constraint was addressing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We were getting some errors on the aarch64 builds in particular around hash mismatches:
https://github.com/dask-contrib/dask-sql/actions/runs/8637144317/job/23678689751
I've been wanting to put some time down to get a simple reproducer together but haven't yet 😕 though if you're interested I could open a PR pinning to the
boa
/conda-build
versions used in the run above to reproduce the failures in CI