-
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
Compute and use the initial string offset when building nested
large string cols with chunked parquet reader
#17702
Merged
rapids-bot
merged 35 commits into
rapidsai:branch-25.02
from
mhaseeb123:fix/str_offset-nested-large-str-cols
Jan 28, 2025
Merged
Compute and use the initial string offset when building nested
large string cols with chunked parquet reader
#17702
rapids-bot
merged 35 commits into
rapidsai:branch-25.02
from
mhaseeb123:fix/str_offset-nested-large-str-cols
Jan 28, 2025
Conversation
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
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
mhaseeb123
added
DO NOT MERGE
Hold off on merging; see PR for details
2 - In Progress
Currently a work in progress
bug
Something isn't working
cuIO
cuIO issue
non-breaking
Non-breaking change
labels
Jan 9, 2025
mhaseeb123
changed the title
🚧 Compute and use the
Compute and use the Jan 14, 2025
str_offset
when reading nested large string cols with chunked Parquet reader.str_offset
when reading nested large string cols with chunked Parquet reader.
CC: @etseidl would love your review here as well if possible! |
mhaseeb123
commented
Jan 14, 2025
mhaseeb123
commented
Jan 14, 2025
mhaseeb123
added
3 - Ready for Review
Ready for review by team
and removed
2 - In Progress
Currently a work in progress
labels
Jan 14, 2025
mhaseeb123
added
4 - Needs Review
Waiting for reviewer to review or respond
and removed
3 - Ready for Review
Ready for review by team
labels
Jan 16, 2025
Benchmark ResultsTLDR; Virtually no difference in performance observed before or after this PR. Benchmark nameexport LIBCUDF_LARGE_STRINGS_THRESHOLD=1 # Set to a small number
./PARQUET_READER_NVBENCH --devices 0 --benchmark parquet_read_long_strings --timeout 10 SetupRMM memory resource = pool
CUIO host memory resource = pinned_pool
# Devices
## [0] `NVIDIA RTX 5880 Ada Generation`
* SM Version: 890 (PTX Version: 860)
* Number of SMs: 110
* SM Default Clock Rate: 18446744071874 MHz
* Global Memory: 11669 MiB Free / 48632 MiB Total
* Global Memory Bus Peak: 960 GB/sec (384-bit DDR @10001MHz)
* Max Shared Memory: 100 KiB/SM, 48 KiB/Block
* L2 Cache Size: 98304 KiB
* Maximum Active Blocks: 24/SM
* Maximum Active Threads: 1536/SM, 1024/Block
* Available Registers: 65536/SM, 65536/Block
* ECC Enabled: No Numbers
|
vuule
reviewed
Jan 21, 2025
….com/mhaseeb123/cudf into fix/str_offset-nested-large-str-cols
/ok to test |
vuule
reviewed
Jan 24, 2025
vuule
reviewed
Jan 24, 2025
vuule
reviewed
Jan 24, 2025
vuule
approved these changes
Jan 24, 2025
mhaseeb123
added
5 - Ready to Merge
Testing and reviews complete, ready to merge
and removed
4 - Needs Review
Waiting for reviewer to review or respond
labels
Jan 24, 2025
/merge |
rapids-bot
bot
merged commit Jan 28, 2025
e0fe51d
into
rapidsai:branch-25.02
108 of 109 checks passed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
5 - Ready to Merge
Testing and reviews complete, ready to merge
bug
Something isn't working
cuIO
cuIO issue
libcudf
Affects libcudf (C++/CUDA) code.
non-breaking
Non-breaking change
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.
Description
Closes #17692.
This PR enables computing the
str_offset
required to correctly compute the offsets columns for nested large strings columns with chunked Parquet reader whenchunk_read_limit
is small resulting in multiple output table chunks per subpass.Checklist