-
Notifications
You must be signed in to change notification settings - Fork 52
Add BinaryView in Arrow C++ as a fundable project #326
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
SylvainCorlay
merged 3 commits into
QuantStack:master
from
pitrou:fundable-arrow-binary-view
Apr 15, 2026
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 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
43 changes: 43 additions & 0 deletions
43
src/components/fundable/descriptions/BinaryViewInArrowCpp.md
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| #### Overview | ||
|
|
||
| Apache Arrow is the universal columnar format and multi-language toolbox for fast data interchange and in-memory analytics. | ||
|
|
||
| Representation of string and binary data in Arrow traditionally uses the Binary layout, where the entire string data resides in a separate buffer that is accessed using indirect indexing from a buffer of offsets. | ||
|
|
||
| Recently, the Arrow project added the Binary View layout, a more efficient layout inspired from modern execution engines where the beginning of each string is packed directly within the offsets buffer. This allows short strings to be read and processed directly without going through an additional indirection. | ||
|
|
||
| However, while basic support is present, Binary View is not universally supported by all Arrow components. | ||
|
|
||
| We propose to finish implementing support for Binary View and String View types in all components of Arrow C++: | ||
|
|
||
| * scalar compute kernels: | ||
| - `equal`, `less_equal`, etc. | ||
| - `is_in`, `index_in` | ||
| - `ascii_*`, `binary_*`, `utf8_*` | ||
| - `string_is_ascii` | ||
| - `count_substring` | ||
| - `extract_regex`, `extract_regex_span` | ||
| - `split_pattern`, `split_pattern_regex` | ||
| - `coalesce` | ||
|
|
||
| * vector compute kernels: | ||
| - `take`, `filter`, `scatter` | ||
| - `run_end_encode`, `run_end_decode` | ||
| - `sort_indices`, `rank`, `rank_normal`, `rank_quantile` | ||
| - `partition_nth_indices` | ||
| - `select_k_unstable` | ||
| - `replace_with_mask` | ||
| - `fill_null_forward`, `fill_null_backward`, `drop_null` | ||
|
|
||
| * aggregate compute kernels: | ||
| - `count_distinct` | ||
| - `first`, `last`, `min`, `max` | ||
| - `index` | ||
|
|
||
| * CSV reader and writer | ||
|
|
||
| * ORC reader and writer | ||
|
|
||
| Funders can decide to fund the entire package, or choose the components they are interested in. | ||
|
|
||
| ##### Are you interested in this project? Either entirely or partially, contact us for more information on how to help us fund it |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; | ||
| import GetAQuotePage from '@site/src/components/fundable/GetAQuotePage'; | ||
|
|
||
| export default function FundablePage() { | ||
| const { siteConfig } = useDocusaurusContext(); | ||
| return ( | ||
| <GetAQuotePage/> | ||
| ); | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; | ||
| import LargeProjectCardPage from '@site/src/components/fundable/LargeProjectCardPage'; | ||
|
|
||
| export default function FundablePage() { | ||
| const { siteConfig } = useDocusaurusContext(); | ||
| return ( | ||
| <LargeProjectCardPage/> | ||
| ); | ||
| } |
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 why this is duplicated from
projectCategoryNameabove)