-
Notifications
You must be signed in to change notification settings - Fork 36
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
Compressed Statistics #2686
Compressed Statistics #2686
Conversation
@@ -34,7 +35,7 @@ impl LayoutStrategy for VortexLayoutStrategy { | |||
ctx.clone(), | |||
&DType::Null, | |||
ChunkedLayoutOptions { | |||
chunk_strategy: Arc::new(FlatLayoutOptions::default()), | |||
chunk_strategy: ArcRef::new_arc(Arc::new(FlatLayoutOptions::default()) as _), |
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.
chunk_strategy: ArcRef::new_arc(Arc::new(FlatLayoutOptions::default()) as _), | |
chunk_strategy: ArcRef::new_arc(Arc::new(FlatLayoutOptions::default())), |
@@ -44,9 +41,8 @@ impl LayoutVTable for ChunkedLayout { | |||
row_offset: u64, | |||
splits: &mut BTreeSet<u64>, | |||
) -> VortexResult<()> { | |||
let nchunks = layout.nchildren() - (if layout.metadata().is_some() { 1 } else { 0 }); |
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.
why is this no longer necessary? It's a bit cheeky to register splits of stats table?
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.
Chunked array no longer had a stats table, move to stats layout
Compress the stats tables