Expand description
Custom derive for the ar_row crate, to deserialize structs
in a row-oriented way from Apache Arrow
§Supported types
Structures can have fields of the following types:
bool,i8,i16,i32,i64,u8,u16,u32,u64,f32,f64,String,Box<[u8]>(binary strings), mapping to their respective Arrow typeVec<T>whenTis a supported type, mapping to an Arrow listHashMap<K, V>andVec<(K, V)>are not supported yet to deserialize ORC maps (see https://gitlab.softwareheritage.org/swh/devel/ar_row-rs/-/issues/1)
§About null values
In order to support all Arrow arrays, every single type should be wrapped in Option
(eg. struct<a:int, b:list<string>> in ORC should be
a: Option<i32>, b: Option<Vec<Option<String>>>), but this is cumbersome, and
may have high overhead if you need to check it.
If you omit Option, then ar_row_derive will return an error early for files
containing null values, and avoid this overhead for files which don’t.
§Examples
use std::fs::File;
use std::num::NonZeroU64;
use orc_rust::projection::ProjectionMask;
use orc_rust::{ArrowReader, ArrowReaderBuilder};
use ar_row::deserialize::{ArRowDeserialize, ArRowStruct};
use ar_row::row_iterator::RowIterator;
use ar_row_derive::ArRowDeserialize;
// Define structure
#[derive(ArRowDeserialize, Clone, Default, Debug, PartialEq, Eq)]
struct Test1 {
long1: Option<i64>,
}
// Open file
let orc_path = "../test_data/TestOrcFile.test1.orc";
let file = File::open(orc_path).expect("could not open .orc");
let builder = ArrowReaderBuilder::try_new(file).expect("could not make builder");
let projection = ProjectionMask::named_roots(
builder.file_metadata().root_data_type(),
&["long1"],
);
let reader = builder.with_projection(projection).build();
let rows: Vec<Option<Test1>> = reader
.flat_map(|batch| -> Vec<Option<Test1>> {
<Option<Test1>>::from_record_batch(batch.unwrap()).unwrap()
})
.collect();
assert_eq!(
rows,
vec![
Some(Test1 {
long1: Some(9223372036854775807)
}),
Some(Test1 {
long1: Some(9223372036854775807)
})
]
);Or equivalently, using RowIterator to reuse the buffer between record batches,
but needs RecordBatch instead of Result<RecordBatch, _> as input:
use std::fs::File;
use std::num::NonZeroU64;
use orc_rust::projection::ProjectionMask;
use orc_rust::{ArrowReader, ArrowReaderBuilder};
use ar_row::deserialize::{ArRowDeserialize, ArRowStruct};
use ar_row::row_iterator::RowIterator;
use ar_row_derive::ArRowDeserialize;
// Define structure
#[derive(ArRowDeserialize, Clone, Default, Debug, PartialEq, Eq)]
struct Test1 {
long1: Option<i64>,
}
// Open file
let orc_path = "../test_data/TestOrcFile.test1.orc";
let file = File::open(orc_path).expect("could not open .orc");
let builder = ArrowReaderBuilder::try_new(file).expect("could not make builder");
let projection = ProjectionMask::named_roots(
builder.file_metadata().root_data_type(),
&["long1"],
);
let reader = builder.with_projection(projection).build();
let mut rows: Vec<Option<Test1>> = RowIterator::new(reader.map(|batch| batch.unwrap()))
.expect("Could not create iterator")
.collect();
assert_eq!(
rows,
vec![
Some(Test1 {
long1: Some(9223372036854775807)
}),
Some(Test1 {
long1: Some(9223372036854775807)
})
]
);It is also possible to nest structures:
use ar_row_derive::ArRowDeserialize;
#[derive(ArRowDeserialize, Default, Debug, PartialEq)]
struct Test1Option {
boolean1: Option<bool>,
byte1: Option<i8>,
short1: Option<i16>,
int1: Option<i32>,
long1: Option<i64>,
float1: Option<f32>,
double1: Option<f64>,
bytes1: Option<Box<[u8]>>,
string1: Option<String>,
list: Option<Vec<Option<Test1ItemOption>>>,
}
#[derive(ArRowDeserialize, Default, Debug, PartialEq)]
struct Test1ItemOption {
int1: Option<i32>,
string1: Option<String>,
}Derive Macros§
- ArRow
Deserialize #[derive(ArRowDeserialize)] struct T { ... }implementsArRowDeserialize,CheckableDataType, andArRowStructforT