forked from chroma-core/chroma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] Add Arrow-backed blockfile (chroma-core#1846)
## Description of changes *Summarize the changes made by this PR.* - Improvements & Bug fixes - Adds roaring bitmap value types, builders etc - New functionality - Adds the base of the blockfile implementation for the arrow-backed blockfile. ## Test plan *How are these changes tested?* Basic - [x] Tests pass locally with `pytest` for python, `yarn test` for js, `cargo test` for rust ## Documentation Changes None
- Loading branch information
Showing
6 changed files
with
675 additions
and
9 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
mod delta; | ||
mod iterator; | ||
mod types; | ||
|
||
pub(in crate::blockstore::arrow_blockfile) mod delta; | ||
// Re-export types at the arrow_blockfile module level | ||
pub(in crate::blockstore::arrow_blockfile) use types::*; |
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.