Struct parquet::encoding::DictEncoder[][src]

pub struct DictEncoder<T: DataType> { /* fields omitted */ }

Dictionary encoder. The dictionary encoding builds a dictionary of values encountered in a given column. The dictionary page is written first, before the data pages of the column chunk.

Dictionary page format: the entries in the dictionary - in dictionary order - using the plain encoding.

Data page format: the bit width used to encode the entry ids stored as 1 byte (max bit width = 32), followed by the values encoded using RLE/Bit packed described above (with the given bit width).

Methods

impl<T: DataType> DictEncoder<T>
[src]

Creates new dictionary encoder.

Returns number of unique entries in the dictionary.

Writes out the dictionary values with PLAIN encoding in a byte buffer, and return the result.

Writes out the dictionary values with RLE encoding in a byte buffer, and return the result.

Trait Implementations

impl<T: DataType> Encoder<T> for DictEncoder<T>
[src]

Encodes data from values.

Returns the encoding type of this encoder.

Flushes the underlying byte buffer that's being processed by this encoder, and return the immutable copy of it. This will also reset the internal state. Read more

Auto Trait Implementations

impl<T> !Send for DictEncoder<T>

impl<T> !Sync for DictEncoder<T>