[][src]Struct rusoto_firehose::ParquetSerDe

pub struct ParquetSerDe {
    pub block_size_bytes: Option<i64>,
    pub compression: Option<String>,
    pub enable_dictionary_compression: Option<bool>,
    pub max_padding_bytes: Option<i64>,
    pub page_size_bytes: Option<i64>,
    pub writer_version: Option<String>,
}

A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.

Fields

block_size_bytes: Option<i64>

The Hadoop Distributed File System (HDFS) block size. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 256 MiB and the minimum is 64 MiB. Kinesis Data Firehose uses this value for padding calculations.

compression: Option<String>

The compression code to use over data blocks. The possible values are UNCOMPRESSED, SNAPPY, and GZIP, with the default being SNAPPY. Use SNAPPY for higher decompression speed. Use GZIP if the compression ratio is more important than speed.

enable_dictionary_compression: Option<bool>

Indicates whether to enable dictionary compression.

max_padding_bytes: Option<i64>

The maximum amount of padding to apply. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 0.

page_size_bytes: Option<i64>

The Parquet page size. Column chunks are divided into pages. A page is conceptually an indivisible unit (in terms of compression and encoding). The minimum value is 64 KiB and the default is 1 MiB.

writer_version: Option<String>

Indicates the version of row format to output. The possible values are V1 and V2. The default is V1.

Trait Implementations

impl Clone for ParquetSerDe[src]

impl Debug for ParquetSerDe[src]

impl Default for ParquetSerDe[src]

impl<'de> Deserialize<'de> for ParquetSerDe[src]

impl PartialEq<ParquetSerDe> for ParquetSerDe[src]

impl Serialize for ParquetSerDe[src]

impl StructuralPartialEq for ParquetSerDe[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.