-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Support Arrow IPC Stream Files #18457
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
Merged
timsaucer
merged 49 commits into
apache:main
from
corasaurus-hex:cs--register-arrow-ipc-stream-format-files
Nov 10, 2025
+1,206
−171
Merged
Changes from 12 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
3e6a570
Infer stream ipc format for arrow data sources
corasaurus-hex 0ad62ed
Allow FileOpener for ArrowSource to open both IPC formats
corasaurus-hex 34ccba4
Split reading file vs stream because repartitioning + ranges
corasaurus-hex 99ebe62
Fix rewind bug
corasaurus-hex 936b2e3
Remove a comment that isn't needed anymore
corasaurus-hex a8bc19d
Stray reference left over from Rename Symbol fail
corasaurus-hex 93d26b1
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex 21320cf
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex 3c00395
Address clippy error
corasaurus-hex 917c6c3
Address additional clippy errors
corasaurus-hex 0f5642a
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex 8941014
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex ffeca09
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex 07593b4
Pull out the stream format check into an independent function
corasaurus-hex 0446c32
Refactor schema inference
corasaurus-hex 7409462
Let's move the `into()` outside the parens
corasaurus-hex 3f72b0c
Err, no, on the inside
corasaurus-hex 9e63fc7
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex c6d4a06
Also include a test for arrow stream source
corasaurus-hex 4e28ef9
Add a bunch more tests
corasaurus-hex d6c77f8
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex cd4f45b
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex d88f5c0
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex afb17eb
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex 589a1d2
Document rename of `ArrowSource` and addition of `ArrowStreamSource`
corasaurus-hex 0ac2f6d
Rename ArrowStreamSource to ArrowStreamFileSource
corasaurus-hex d0fb260
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex c8e8bd1
Keep same public interface but switch between formats
corasaurus-hex 6f01b80
whitespace fixes
corasaurus-hex 6b5ba4b
Remove note from upgrade guide
corasaurus-hex 2e857c7
Improve the docs a little
corasaurus-hex c67c881
Add a note about the confusing naming
corasaurus-hex 724444f
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files-w…
corasaurus-hex 882e9fa
Stray line in the upgrade doc
corasaurus-hex 9144d9e
Add initializers and fill out shared interface
corasaurus-hex d5122f0
Formatting
corasaurus-hex 10cc7d7
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files-w…
corasaurus-hex 5f064ff
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files
corasaurus-hex 68d286a
Merge branch 'main' into cs--register-arrow-ipc-stream-format-files-w…
corasaurus-hex 8b314a5
Type error and linting fix
corasaurus-hex 20c8377
Docs
corasaurus-hex da81767
Merge branch 'cs--register-arrow-ipc-stream-format-files-wrapped' int…
corasaurus-hex 2ddd690
Update docs for clarity
corasaurus-hex cf08a7d
Add more comments describing the format so that it's easier to
corasaurus-hex 057e0de
Test querying from empty stream format file
corasaurus-hex 4c30eb9
Add tests for corrupted stream format and empty stream
corasaurus-hex b2041d8
ArrowStreamOpener -> ArrowStreamFileOpener in error text
corasaurus-hex 3718797
Make `inner` public only within the crate
corasaurus-hex 1724b3b
Combine errors for file and stream formats
corasaurus-hex 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
Some comments aren't visible on the classic Files Changed page.
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
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
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 think this needs to be added to the migration guide
docs/source/library-user-guide/upgrading.md. We're renaming a public facing struct so this is a breaking change, if minor.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 this go under the 51.0.0 upgrade section?
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.
Updated the upgrade document.