logo
pub struct OrcSerDe {
    pub block_size_bytes: Option<i64>,
    pub bloom_filter_columns: Option<Vec<String>>,
    pub bloom_filter_false_positive_probability: Option<f64>,
    pub compression: Option<String>,
    pub dictionary_key_threshold: Option<f64>,
    pub enable_padding: Option<bool>,
    pub format_version: Option<String>,
    pub padding_tolerance: Option<f64>,
    pub row_index_stride: Option<i64>,
    pub stripe_size_bytes: Option<i64>,
}
Expand description

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

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.

bloom_filter_columns: Option<Vec<String>>

The column names for which you want Kinesis Data Firehose to create bloom filters. The default is null.

bloom_filter_false_positive_probability: Option<f64>

The Bloom filter false positive probability (FPP). The lower the FPP, the bigger the Bloom filter. The default value is 0.05, the minimum is 0, and the maximum is 1.

compression: Option<String>

The compression code to use over data blocks. The default is SNAPPY.

dictionary_key_threshold: Option<f64>

Represents the fraction of the total number of non-null rows. To turn off dictionary encoding, set this fraction to a number that is less than the number of distinct keys in a dictionary. To always use dictionary encoding, set this threshold to 1.

enable_padding: Option<bool>

Set this to true to indicate that you want stripes to be padded to the HDFS block boundaries. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is false.

format_version: Option<String>

The version of the file to write. The possible values are V0_11 and V0_12. The default is V0_12.

padding_tolerance: Option<f64>

A number between 0 and 1 that defines the tolerance for block padding as a decimal fraction of stripe size. The default value is 0.05, which means 5 percent of stripe size.

For the default values of 64 MiB ORC stripes and 256 MiB HDFS blocks, the default block padding tolerance of 5 percent reserves a maximum of 3.2 MiB for padding within the 256 MiB block. In such a case, if the available size within the block is more than 3.2 MiB, a new, smaller stripe is inserted to fit within that space. This ensures that no stripe crosses block boundaries and causes remote reads within a node-local task.

Kinesis Data Firehose ignores this parameter when OrcSerDe$EnablePadding is false.

row_index_stride: Option<i64>

The number of rows between index entries. The default is 10,000 and the minimum is 1,000.

stripe_size_bytes: Option<i64>

The number of bytes in each stripe. The default is 64 MiB and the minimum is 8 MiB.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

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

Should always be Self

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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