Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In the Advanced tab you can configure additional properties for optimizing the performance of the Parquet. Depending on selected ....  """"""""""""""""""SHOULD SOMETHING FOLLOW HERE?""""""""""""""""""

The Parquet profile's Advanced tab


SettingDescription

Compression Codec

The compression algorithm used to compress pages when encoding. Valid choices are Uncompressed, Snappy, Gzip, Lzo, Brotli, Lz4, and Zstd. Default is Uncompressed.

Block Size

The Block Size is the size of a row group buffered in memory. Block size limits the memory usage when writing. Larger values will improve improves I/O when reading, but consume consumes more memory when writing. The Default Block Size is 134217728.

Page SizeThe page is the smallest unit that must be read fully to access a single record. When reading, each page can be decompressed independently. If this value is too small, the compression will deterioratedeteriorates. The Default Page Size is 1048576.
Dictionary Page SizeThere is one dictionary page per column per row group when dictionary encoding is used. Dictionary page size works like the page size, but for dictionary encoding. Default is 1048576.
Enable Dictionary

Select this check box checkbox to enable  to include the dictionary compression strategy in the generated parquet Parquet document. Enabling dictionary Enable Dictionary allows for building a dictionary of values encountered in columns.

ValidatingSelect this check box checkbox to enable schema validation.
Writer VersionParquet format version to use when writing. Version 1.0 (v1) ensures compatibility with older readers. Default is v1. The There is also the option is to set v2.