Skip to content

Commit

Permalink
support fanout partition writer
Browse files Browse the repository at this point in the history
  • Loading branch information
ZENOTME committed Nov 29, 2024
1 parent 84e6fa0 commit 98cd34d
Show file tree
Hide file tree
Showing 9 changed files with 602 additions and 18 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ arrow-ord = { version = "53" }
arrow-schema = { version = "53" }
arrow-select = { version = "53" }
arrow-string = { version = "53" }
arrow-row = { version = "53" }
async-stream = "0.3.5"
async-trait = "0.1"
async-std = "1.12"
Expand Down
1 change: 1 addition & 0 deletions crates/iceberg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ arrow-arith = { workspace = true }
arrow-array = { workspace = true }
arrow-cast = { workspace = true }
arrow-ord = { workspace = true }
arrow-row = { workspace = true }
arrow-schema = { workspace = true }
arrow-select = { workspace = true }
arrow-string = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions crates/iceberg/src/arrow/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ pub(crate) mod record_batch_transformer;
mod value;
pub use reader::*;
pub use value::*;
mod record_batch_partition_spliter;
pub(crate) use record_batch_partition_spliter::*;
Loading

0 comments on commit 98cd34d

Please sign in to comment.