-
Notifications
You must be signed in to change notification settings - Fork 915
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
[WIP] Improve pyarrow-free remote-IO performance #16166
Closed
Closed
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
b5c38bb
start simplifying remote-io optimizations
rjzamora 7361e92
add basic json support
rjzamora 7472446
only use _fsspec_data_transfer for file-like objects
rjzamora 8b51952
add read_text support for byte_range opt
rjzamora 778ceeb
start experimental dask changes
rjzamora ec5d140
Merge remote-tracking branch 'upstream/branch-24.08' into simplify-re…
rjzamora b55fce9
simplify
rjzamora 719d422
Merge remote-tracking branch 'upstream/branch-24.08' into simplify-re…
rjzamora 0874388
improve backward compatibility during deprecation cycle (in dask-cudf)
rjzamora f12b20f
remove deprecation warnings
rjzamora e265d40
refactor
rjzamora 85a1cf6
update metadata reader
rjzamora c3f48cc
resolve json behavior
rjzamora 373b37a
json fix
rjzamora 2b00674
remove open_file_options from test_read_parquet_filters
rjzamora 9d3f3f6
Merge remote-tracking branch 'upstream/branch-24.08' into simplify-re…
rjzamora 6658f34
update
rjzamora 8c2a2e2
Merge branch 'branch-24.08' into simplify-remote-io
rjzamora 9791e2d
Merge branch 'branch-24.08' into simplify-remote-io
rjzamora edf376a
Merge branch 'branch-24.08' into simplify-remote-io
rjzamora cda3f4b
Merge branch 'branch-24.08' into simplify-remote-io
rjzamora d6fae35
Merge branch 'branch-24.08' into simplify-remote-io
rjzamora 0db7865
Merge remote-tracking branch 'upstream/branch-24.08' into simplify-re…
rjzamora 9465846
Merge remote-tracking branch 'upstream/branch-24.08' into simplify-re…
rjzamora 26d08fe
Merge remote-tracking branch 'upstream/branch-24.08' into simplify-re…
rjzamora 81f2a7d
fix tests
rjzamora 00c47fa
Merge remote-tracking branch 'upstream/branch-24.10' into simplify-re…
rjzamora 5867f05
register read_parquet function to CudfDXBackendEntrypoint
rjzamora 1f73dbe
Merge remote-tracking branch 'upstream/branch-24.10' into dx-parquet-…
rjzamora 17be6b0
add read_csv def
rjzamora 04aa983
formatting
rjzamora 28fd1f8
Merge branch 'branch-24.10' into dx-parquet-dispatch
rjzamora 5d8c80d
simplify imports
rjzamora 23c0cb3
Merge remote-tracking branch 'upstream/branch-24.10' into dx-parquet-…
rjzamora 8bf252e
Merge branch 'dx-parquet-dispatch' of github.com:rjzamora/cudf into d…
rjzamora b857c0c
Merge branch 'branch-24.10' into dx-parquet-dispatch
rjzamora d10e9d7
Merge branch 'branch-24.10' into dx-parquet-dispatch
rjzamora ffcc137
Apply suggestions from code review
rjzamora 491c140
Merge remote-tracking branch 'upstream/branch-24.10' into simplify-re…
rjzamora 9313d54
Merge branch 'dx-parquet-dispatch' into simplify-remote-io
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
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
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.
I'm not sure how I feel about this
prefetch_read_ahead
option. This basically determines how many bytes we will read beyondbyte_range
to make sure we capture a delimiter (for example).