-
Notifications
You must be signed in to change notification settings - Fork 796
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Parquet Byte Stream Split Encoding (#5293)
* wip byte-stream-split * decoding works * impl split * clean up * whitespace * remove println * get compiling after rebase * integration test, as one might call it * update parquet-testing revision * encoding bench * improve performance * test fix * add apache headers * one more test and readme update --------- Co-authored-by: Simon Vandel Sillesen <simon.vandel@gmail.com>
- Loading branch information
1 parent
4a6ae68
commit 4c3e9be
Showing
10 changed files
with
499 additions
and
92 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
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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
use criterion::*; | ||
use parquet::basic::Encoding; | ||
use parquet::data_type::{DataType, DoubleType, FloatType}; | ||
use parquet::decoding::{get_decoder, Decoder}; | ||
use parquet::encoding::get_encoder; | ||
use parquet::schema::types::{ColumnDescPtr, ColumnDescriptor, ColumnPath, Type}; | ||
use rand::prelude::*; | ||
use std::sync::Arc; | ||
|
||
fn bench_typed<T: DataType>(c: &mut Criterion, values: &[T::T], encoding: Encoding) { | ||
let name = format!( | ||
"dtype={}, encoding={:?}", | ||
std::any::type_name::<T::T>(), | ||
encoding | ||
); | ||
c.bench_function(&format!("encoding: {}", name), |b| { | ||
b.iter(|| { | ||
let mut encoder = get_encoder::<T>(encoding).unwrap(); | ||
encoder.put(values).unwrap(); | ||
encoder.flush_buffer().unwrap(); | ||
}); | ||
}); | ||
|
||
let mut encoder = get_encoder::<T>(encoding).unwrap(); | ||
encoder.put(values).unwrap(); | ||
let encoded = encoder.flush_buffer().unwrap(); | ||
println!("{} encoded as {} bytes", name, encoded.len(),); | ||
|
||
let mut buffer = vec![T::T::default(); values.len()]; | ||
let column_desc_ptr = ColumnDescPtr::new(ColumnDescriptor::new( | ||
Arc::new( | ||
Type::primitive_type_builder("", T::get_physical_type()) | ||
.build() | ||
.unwrap(), | ||
), | ||
0, | ||
0, | ||
ColumnPath::new(vec![]), | ||
)); | ||
c.bench_function(&format!("decoding: {}", name), |b| { | ||
b.iter(|| { | ||
let mut decoder: Box<dyn Decoder<T>> = | ||
get_decoder(column_desc_ptr.clone(), encoding).unwrap(); | ||
decoder.set_data(encoded.clone(), values.len()).unwrap(); | ||
decoder.get(&mut buffer).unwrap(); | ||
}); | ||
}); | ||
} | ||
|
||
fn criterion_benchmark(c: &mut Criterion) { | ||
let mut rng = StdRng::seed_from_u64(0); | ||
let n = 16 * 1024; | ||
|
||
let mut f32s = Vec::new(); | ||
let mut f64s = Vec::new(); | ||
for _ in 0..n { | ||
f32s.push(rng.gen::<f32>()); | ||
f64s.push(rng.gen::<f64>()); | ||
} | ||
|
||
bench_typed::<FloatType>(c, &f32s, Encoding::BYTE_STREAM_SPLIT); | ||
bench_typed::<DoubleType>(c, &f64s, Encoding::BYTE_STREAM_SPLIT); | ||
} | ||
|
||
criterion_group!(benches, criterion_benchmark); | ||
criterion_main!(benches); |
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
Oops, something went wrong.