Expand description
Arrow IPC File and Stream Readers
§Notes
The FileReader
and StreamReader
have similar interfaces,
however the FileReader
expects a reader that supports Seek
ing
Structs§
- File
Decoder - A low-level, push-based interface for reading an IPC file
- File
Reader - Arrow File Reader
- File
Reader Builder - Build an Arrow
FileReader
with custom options. - Stream
Decoder - A low-level interface for reading
RecordBatch
data from a stream of bytes - Stream
Reader - Arrow Stream Reader
Functions§
- read_
dictionary - Read the dictionary from the buffer and provided metadata,
updating the
dictionaries_by_id
with the resulting dictionary - read_
footer_ length - Read the footer length from the last 10 bytes of an Arrow IPC file
- read_
record_ batch - Creates a record batch from binary data using the
crate::RecordBatch
indexes and theSchema
.