vortex_file/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4#![allow(clippy::cast_possible_truncation)]
5#![doc(html_logo_url = "/vortex/docs/_static/vortex_spiral_logo.svg")]
6//! Read and write Vortex layouts, a serialization of Vortex arrays.
7//!
8//! A layout is a serialized array which is stored in some linear and contiguous block of
9//! memory. Layouts are recursive, and there are currently three types:
10//!
11//! 1. The [`FlatLayout`](vortex_layout::layouts::flat::FlatLayout). A contiguously serialized array of buffers, with a specific in-memory [`Alignment`](vortex_buffer::Alignment).
12//!
13//! 2. The [`StructLayout`](vortex_layout::layouts::struct_::StructLayout). Each column of a
14//! [`StructArray`][vortex_array::arrays::StructArray] is sequentially laid out at known offsets.
15//! This permits reading a subset of columns in linear time, as well as constant-time random
16//! access to any column.
17//!
18//! 3. The [`ChunkedLayout`](vortex_layout::layouts::chunked::ChunkedLayout). Each chunk of a
19//! [`ChunkedArray`](vortex_array::arrays::ChunkedArray) is sequentially laid out at known
20//! offsets. Finding the chunks containing row range is an `Nlog(N)` operation of searching the
21//! offsets.
22//!
23//! 4. The [`ZonedLayout`](vortex_layout::layouts::zoned::ZonedLayout).
24//!
25//! A layout, alone, is _not_ a standalone Vortex file because layouts are not self-describing. They
26//! neither contain a description of the kind of layout (e.g. flat, column of flat, chunked of
27//! column of flat) nor a data type ([`DType`](vortex_dtype::DType)).
28//!
29//! # Reading
30//!
31//! Vortex files are read using [`VortexOpenOptions`], which can be provided with information about the file's
32//! structure to save on IO before the actual data read. Once the file is open and has done the initial IO work to understand its own structure,
33//! it can be turned into a stream by calling [`VortexFile::scan`].
34//!
35//! The file manages IO-oriented work and CPU-oriented work on two different underlying runtimes, which are configurable and pluggable with multiple provided implementations (Tokio, Rayon etc.).
36//!
37//! # File Format
38//!
39//! Succinctly, the file format specification is as follows:
40//!
41//! 1. Data is written first, in a form that is describable by a Layout (typically Array IPC Messages).
42//! 1. To allow for more efficient IO & pruning, our writer implementation first writes the "data" arrays,
43//! and then writes the "metadata" arrays (i.e., per-column statistics)
44//! 2. We write what is collectively referred to as the "Footer", which contains:
45//! 1. An optional Schema, which if present is a valid flatbuffer representing a message::Schema
46//! 2. The Layout, which is a valid footer::Layout flatbuffer, and describes the physical byte ranges & relationships amongst
47//! the those byte ranges that we wrote in part 1.
48//! 3. The Postscript, which is a valid footer::Postscript flatbuffer, containing the absolute start offsets of the Schema & Layout
49//! flatbuffers within the file.
50//! 4. The End-of-File marker, which is 8 bytes, and contains the u16 version, u16 postscript length, and 4 magic bytes.
51//!
52//! ## Illustrated File Format
53//! ```text
54//! ┌────────────────────────────┐
55//! │ │
56//! │ Data │
57//! │ (Array IPC Messages) │
58//! │ │
59//! ├────────────────────────────┤
60//! │ │
61//! │ Per-Column Statistics │
62//! │ │
63//! ├────────────────────────────┤
64//! │ │
65//! │ Schema Flatbuffer │
66//! │ │
67//! ├────────────────────────────┤
68//! │ │
69//! │ Layout Flatbuffer │
70//! │ │
71//! ├────────────────────────────┤
72//! │ │
73//! │ Postscript Flatbuffer │
74//! │ (Schema & Layout Offsets) │
75//! │ │
76//! ├────────────────────────────┤
77//! │ 8-byte End of File │
78//! │(Version, Postscript Length,│
79//! │ Magic Bytes) │
80//! └────────────────────────────┘
81//! ```
82//!
83//! A Parquet-style file format is realized by using a chunked layout containing column layouts
84//! containing chunked layouts containing flat layouts. The outer chunked layout represents row
85//! groups. The inner chunked layout represents pages.
86//!
87//! Layouts are adaptive, and the writer is free to build arbitrarily complex layouts to suit their
88//! goals of locality or parallelism. For example, one may write a column in a Struct Layout with
89//! or without chunking, or completely elide statistics to save space or if they are not needed, for
90//! example if the metadata is being stored in an external index.
91//!
92
93mod counting;
94mod file;
95mod footer;
96mod open;
97mod pruning;
98pub mod segments;
99mod strategy;
100#[cfg(test)]
101mod tests;
102mod writer;
103
104pub use file::*;
105pub use footer::*;
106pub use forever_constant::*;
107pub use open::*;
108pub use strategy::*;
109use vortex_alp::ALPRDVTable;
110use vortex_alp::ALPVTable;
111use vortex_array::arrays::DictVTable;
112use vortex_array::session::ArraySessionExt;
113use vortex_array::vtable::ArrayVTableExt;
114use vortex_bytebool::ByteBoolVTable;
115use vortex_datetime_parts::DateTimePartsVTable;
116use vortex_decimal_byte_parts::DecimalBytePartsVTable;
117use vortex_fastlanes::BitPackedVTable;
118use vortex_fastlanes::DeltaVTable;
119use vortex_fastlanes::FoRVTable;
120use vortex_fastlanes::RLEVTable;
121use vortex_fsst::FSSTVTable;
122use vortex_pco::PcoVTable;
123use vortex_sequence::SequenceVTable;
124use vortex_session::VortexSession;
125use vortex_sparse::SparseVTable;
126use vortex_zigzag::ZigZagVTable;
127pub use writer::*;
128
129/// The current version of the Vortex file format
130pub const VERSION: u16 = 1;
131/// The size of the footer in bytes in Vortex version 1
132pub const V1_FOOTER_FBS_SIZE: usize = 32;
133
134/// Constants that will never change (i.e., doing so would break backwards compatibility)
135mod forever_constant {
136 /// The extension for Vortex files
137 pub const VORTEX_FILE_EXTENSION: &str = "vortex";
138
139 /// The maximum length of a Vortex postscript in bytes
140 pub const MAX_POSTSCRIPT_SIZE: u16 = u16::MAX - 8;
141 /// The magic bytes for a Vortex file
142 pub const MAGIC_BYTES: [u8; 4] = *b"VTXF";
143 /// The size of the EOF marker in bytes
144 pub const EOF_SIZE: usize = 8;
145
146 #[cfg(test)]
147 mod test {
148 use super::*;
149 use crate::*;
150
151 #[test]
152 fn never_change_these_constants() {
153 assert_eq!(V1_FOOTER_FBS_SIZE, 32);
154 assert_eq!(MAX_POSTSCRIPT_SIZE, 65527);
155 assert_eq!(MAGIC_BYTES, *b"VTXF");
156 assert_eq!(EOF_SIZE, 8);
157 }
158 }
159}
160
161/// Register the default encodings use in Vortex files with the provided session.
162///
163/// NOTE: this function will be changed in the future to encapsulate logic for using different
164/// Vortex "Editions" that may support different sets of encodings.
165pub fn register_default_encodings(session: &mut VortexSession) {
166 session.arrays().register_many([
167 ALPVTable.as_vtable(),
168 ALPRDVTable.as_vtable(),
169 BitPackedVTable.as_vtable(),
170 ByteBoolVTable.as_vtable(),
171 DateTimePartsVTable.as_vtable(),
172 DecimalBytePartsVTable.as_vtable(),
173 DeltaVTable.as_vtable(),
174 DictVTable.as_vtable(),
175 FSSTVTable.as_vtable(),
176 FoRVTable.as_vtable(),
177 PcoVTable.as_vtable(),
178 RLEVTable.as_vtable(),
179 SequenceVTable.as_vtable(),
180 SparseVTable.as_vtable(),
181 ZigZagVTable.as_vtable(),
182 #[cfg(feature = "zstd")]
183 vortex_zstd::ZstdVTable.as_vtable(),
184 ]);
185
186 // Eventually all encodings crates should expose an initialize function. For now it's only
187 // a few of them.
188 vortex_runend::initialize(session)
189}