-
Notifications
You must be signed in to change notification settings - Fork 980
Continued: Use Arc<[Buffer]> instead of raw Vec<Buffer> in GenericByteViewArray for faster slice #7773
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
Open
ctsk
wants to merge
12
commits into
apache:main
Choose a base branch
from
ctsk:arc-buffers
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Continued: Use Arc<[Buffer]> instead of raw Vec<Buffer> in GenericByteViewArray for faster slice #7773
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8421b96
Use `Arc<[Buffer]>` instead of raw `Vec<Buffer>` in `GenericByteViewA…
ShiKaiWi 2d9e7af
add benchmark case about view array slice
ShiKaiWi 9078199
Fixup rebase errors
ctsk 0748cc0
Implement ViewBuffers abstraction
ctsk aaa2341
Use ViewBuffers abstraction
ctsk 25e215a
Add license
ctsk 9eda113
Keep encapsulation in struct
ctsk cd4bf18
Clean up ArrayData::from(GenericByteViewArray<T>)
ctsk cf19477
Mini clean-up
ctsk 1bb37b2
Merge remote-tracking branch 'apache/main' into arc-buffers
alamb 5733877
Fix concat regression
ctsk e71a332
Exclude drop from measurements
ctsk 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
Keep encapsulation in struct
- Loading branch information
commit 9eda1136d72b8b83a1bcfc6e45c54f1cd259c275
There are no files selected for viewing
This file contains hidden or 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 hidden or 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.
I think this changes the semantics slightly -- and it only shrinks the buffers if they aren't shared
Maybe it should be using
Arc::make_mut
🤔Uh oh!
There was an error while loading. Please reload this page.
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.
The underlying Buffers are reference counted too, and only shrink themselves if the reference count is 1. So while this does change the semantics slightly, I don't think it changes as much in practice: When the Arc is shared, the (current) alternative would be to store references to the same buffers in another Vec - thus incrementing the reference counts on the underlying buffers and making their
shrink_to_fit
a no-op.That's also why
make_mut
wont lead to more shrinking