Skip to main content

FileMetadata

Struct FileMetadata 

pub struct FileMetadata {
    pub version: i32,
    pub num_rows: usize,
    pub max_row_group_height: usize,
    pub created_by: Option<String>,
    pub row_groups: Vec<RowGroupMetadata>,
    pub key_value_metadata: Option<Vec<KeyValue>>,
    pub schema_descr: SchemaDescriptor,
    pub column_orders: Option<Vec<ColumnOrder>>,
    pub footer_buf: Buffer<u8>,
}
Available on crate feature polars-io only.
Expand description

Metadata for a Parquet file.

Fields§

§version: i32

version of this file.

§num_rows: usize

number of rows in the file.

§max_row_group_height: usize

Max row group height, useful for sharing column materializations.

§created_by: Option<String>

String message for application that wrote this file.

This should have the following format: <application> version <application version> (build <application build hash>).

parquet-mr version 1.8.0 (build 0fda28af84b9746396014ad6a415b90592a98b3b)
§row_groups: Vec<RowGroupMetadata>

The row groups of this file

§key_value_metadata: Option<Vec<KeyValue>>

key_value_metadata of this file.

§schema_descr: SchemaDescriptor

schema descriptor.

§column_orders: Option<Vec<ColumnOrder>>

Column (sort) order used for min_value and max_value of each leaf column in this file, one per leaf of schema_descr in the same order.

None when the file has no column orders, or not one per leaf; each column then has the undefined (legacy) column order.

§footer_buf: Buffer<u8>

Footer bytes that back this file’s column-chunk statistics. Stats min_value / max_value are stored as (offset, len) ranges into this buffer; pass &self.footer_buf to [super::ColumnChunkMetadata::statistics] to materialise them.

Implementations§

§

impl FileMetadata

pub fn schema(&self) -> &SchemaDescriptor

Returns the [SchemaDescriptor] that describes the schema of this file.

pub fn key_value_metadata(&self) -> &Option<Vec<KeyValue>>

Returns the file-level key-value metadata, if present.

pub fn column_order(&self, i: usize) -> ColumnOrder

Returns column order for the ith leaf column in this file. If column orders are not available, returns undefined (legacy) column order.

pub fn pruned( &self, keep_top_level_names: &[PlSmallStr], predicate_top_level_names: &[PlSmallStr], ) -> Result<FileMetadata, ParquetError>

Prune to projected columns, keeping statistics only for predicate columns.

Returns a new FileMetadata containing only:

  • top-level schema fields whose name is in keep_top_level_names,
  • row-group chunks corresponding to those fields’ leaves,
  • statistics on chunks whose column is in predicate_top_level_names.

predicate_top_level_names is treated as a subset of keep_top_level_names; pass &[] to drop all stats. created_by and key_value_metadata are also dropped (not needed by the read hot path); column_orders is kept for the remaining leaves.

Returns Err only when [RowGroupMetadata::from_compact] rejects the rebuilt row group (chunks-vs-leaves desync). Callers can fall back to unpruned metadata; the unpruned form is always valid.

TODO: a planner-side pass could pre-evaluate static predicates against stats and drop fully-skipped row groups, removing stats from the wire for those cases.

Trait Implementations§

§

impl Clone for FileMetadata

§

fn clone(&self) -> FileMetadata

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for FileMetadata

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for FileMetadata

§

fn deserialize<D>(d: D) -> Result<FileMetadata, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Serialize for FileMetadata

§

fn serialize<S>( &self, s: S, ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

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
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

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> Key for T
where T: Clone,

Source§

fn align() -> usize

The alignment necessary for the key. Must return a power of two.
Source§

fn size(&self) -> usize

The size of the key in bytes.
Source§

unsafe fn init(&self, ptr: *mut u8)

Initialize the key in the given memory location. Read more
Source§

unsafe fn get<'a>(ptr: *const u8) -> &'a T

Get a reference to the key from the given memory location. Read more
Source§

unsafe fn drop_in_place(ptr: *mut u8)

Drop the key in place. Read more
§

impl<T> PlanCallbackArgs for T

§

impl<T> PlanCallbackOut for T

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

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

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

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<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