A native Rust implementation of Apache Arrow, a cross-language development platform for in-memory data.
DataType
Every Array in this crate has an associated DataType,
that specifies how its data is layed in memory and represented.
Thus, a central enum of this crate is DataType, that contains the set of valid
DataTypes in the specification. For example, DataType::Utf8.
Array
The central trait of this package is the dynamically-typed Array that
represents a fixed-sized, immutable, Send + Sync Array of nullable elements. An example of such an array is UInt32Array.
One way to think about an arrow Array is a Arc<[Option<T>; len]> where T can be anything ranging from an integer to a string, or even
another Array.
Arrays have len(), data_type(), and the nullability of each of its elements,
can be obtained via is_null(index). To downcast an Array to a specific implementation, you can use
use ;
let array = from;
assert_eq!;
assert_eq!;
assert_eq!;
To make the array dynamically typed, we wrap it in an Arc:
# use Arc;
use DataType;
use ;
# let array = from;
let array: ArrayRef = new;
assert_eq!;
// array.value() is not available in the dynamically-typed version
assert_eq!;
assert_eq!;
to downcast, use as_any():
# use Arc;
# use ;
# let array = from;
# let array: ArrayRef = new;
let array = array.as_any..unwrap;
assert_eq!;
Memory and Buffers
Data in Array is stored in ArrayData, that in turn
is a collection of other ArrayData and Buffers.
Buffers is the central struct that array implementations use keep allocated memory and pointers.
The MutableBuffer is the mutable counter-part ofBuffer.
These are the lowest abstractions of this crate, and are used throughout the crate to
efficiently allocate, write, read and deallocate memory.
Field, Schema and RecordBatch
Field is a struct that contains an array's metadata (datatype and whether its values
can be null), and a name. Schema is a vector of fields with optional metadata.
Together, they form the basis of a schematic representation of a group of Arrays.
In fact, RecordBatch is a struct with a Schema and a vector of
Arrays, all with the same len. A record batch is the highest order struct that this crate currently offers
and is broadly used to represent a table where each column in an Array.
Compute
This crate offers many operations (called kernels) to operate on Arrays, that you can find at [compute::kernels].
It has both vertical and horizontal operations, and some of them have an SIMD implementation.
Status
This crate has most of the implementation of the arrow specification. Specifically, it supports the following types:
- All arrow primitive types, such as
Int32Array,BooleanArrayandFloat64Array. - All arrow variable length types, such as
StringArrayandBinaryArray - All composite types such as
StructArrayandListArray - Dictionary types
DictionaryArray
This crate also implements many common vertical operations:
- all mathematical binary operators, such as
subtract - all boolean binary operators such as
equality castfiltertakeandlimitsort- some string operators such as
substringandlength
as well as some horizontal operations, such as
Finally, this crate implements some readers and writers to different formats:
The parquet implementation is on a separate crate