Struct vortex_file::builder::VortexReadBuilder

source ·
pub struct VortexReadBuilder<R> { /* private fields */ }
Expand description

Builder for reading Vortex files.

Succinctly, the file format specification is as follows:

  1. Data is written first, in a form that is describable by a Layout (typically Array IPC Messages). a. To allow for more efficient IO & pruning, our writer implementation first writes the “data” arrays, and then writes the “metadata” arrays (i.e., per-column statistics)
  2. We write what is collectively referred to as the “Footer”, which contains: a. An optional Schema, which if present is a valid flatbuffer representing a message::Schema b. The Layout, which is a valid footer::Layout flatbuffer, and describes the physical byte ranges & relationships amongst the those byte ranges that we wrote in part 1. c. The Postscript, which is a valid footer::Postscript flatbuffer, containing the absolute start offsets of the Schema & Layout flatbuffers within the file. d. The End-of-File marker, which is 8 bytes, and contains the u16 version, u16 postscript length, and 4 magic bytes.

§Reified File Format

┌────────────────────────────┐
│                            │
│            Data            │
│    (Array IPC Messages)    │
│                            │
├────────────────────────────┤
│                            │
│   Per-Column Statistics    │
│                            │
├────────────────────────────┤
│                            │
│     Schema Flatbuffer      │
│                            │
├────────────────────────────┤
│                            │
│     Layout Flatbuffer      │
│                            │
├────────────────────────────┤
│                            │
│    Postscript Flatbuffer   │
│  (Schema & Layout Offsets) │
│                            │
├────────────────────────────┤
│     8-byte End of File     │
│(Version, Postscript Length,│
│       Magic Bytes)         │
└────────────────────────────┘

Implementations§

source§

impl<R: VortexReadAt + Unpin> VortexReadBuilder<R>

source

pub fn new(read_at: R, layout_serde: LayoutDeserializer) -> Self

source

pub fn with_file_size(self, size: u64) -> Self

source

pub fn with_projection(self, projection: Projection) -> Self

source

pub fn with_indices(self, array: ArrayData) -> Self

source

pub fn with_row_filter(self, row_filter: RowFilter) -> Self

source

pub fn with_io_dispatcher(self, dispatcher: Arc<IoDispatcher>) -> Self

source

pub fn with_initial_read(self, initial_read: InitialRead) -> Self

source

pub async fn build(self) -> VortexResult<VortexFileArrayStream<R>>

Auto Trait Implementations§

§

impl<R> !Freeze for VortexReadBuilder<R>

§

impl<R> !RefUnwindSafe for VortexReadBuilder<R>

§

impl<R> Send for VortexReadBuilder<R>
where R: Send,

§

impl<R> Sync for VortexReadBuilder<R>
where R: Sync,

§

impl<R> Unpin for VortexReadBuilder<R>
where R: Unpin,

§

impl<R> !UnwindSafe for VortexReadBuilder<R>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

§

impl<T> Ungil for T
where T: Send,