Skip to main content

vortex_layout/scan/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4pub mod arrow;
5mod filter;
6pub mod layout;
7pub mod multi;
8pub mod repeated_scan;
9pub mod scan_builder;
10pub mod split_by;
11mod splits;
12mod tasks;
13#[cfg(test)]
14mod test;
15
16/// A heuristic for an ideal split size.
17///
18/// We don't actually know if this is right, but it is probably a good estimate.
19const IDEAL_SPLIT_SIZE: u64 = 100_000;