-
Notifications
You must be signed in to change notification settings - Fork 921
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
Refactor Dask cuDF legacy code #17205
Merged
rapids-bot
merged 22 commits into
rapidsai:branch-24.12
from
rjzamora:refactor-dask-cudf
Nov 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
da9b6fb
initial refactor
rjzamora 196c0c0
rename _collection.py to core.py
rjzamora 5be712b
keep _collection name
rjzamora 957299b
move legacy io
rjzamora 86b3fa6
split out _expr.py logic
rjzamora 60853f6
fix patching
rjzamora 56644e8
Merge branch 'branch-24.12' into refactor-dask-cudf
rjzamora db4556f
tweak _patch_dask_expr
rjzamora 8dec940
Merge remote-tracking branch 'upstream/branch-24.12' into refactor-da…
rjzamora e54807f
Merge branch 'refactor-dask-cudf' of github.com:rjzamora/cudf into re…
rjzamora ec139d2
copy upstream changes
rjzamora b5f92c9
Merge remote-tracking branch 'upstream/branch-24.12' into refactor-da…
rjzamora 8fb4657
use Mads' suggestion
rjzamora 1d7c84e
remove core - not worth the tech debt
rjzamora ab56534
Merge remote-tracking branch 'upstream/branch-24.12' into refactor-da…
rjzamora 788cb24
add back core.py
rjzamora 1f54219
add deprecation warnings for various IO methods
rjzamora 95a6697
Merge remote-tracking branch 'upstream/branch-24.12' into refactor-da…
rjzamora 1b36183
add test coverage for _deprecated_api usage
rjzamora bc9897b
fix parquet test mistake
rjzamora a84128a
Merge remote-tracking branch 'upstream/branch-24.12' into refactor-da…
rjzamora ba3032a
Merge branch 'branch-24.12' into refactor-dask-cudf
rjzamora 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
tweak _patch_dask_expr
- Loading branch information
commit db4556fd547ebc132031dfc3ef723330184b794d
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
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.
Most of this PR is just moving around existing code. This change is actually new - We used to implicitly "patch" dask-expr when the
expr
module was imported. I'm trying to make the patching a bit more explicit (but I only want to allow this function to do its thing once).