Skip to content

Specifying Options of the File

Selfeer edited this page Nov 12, 2024 · 1 revision

Options

Options determine the overall settings of the file like:

  • the size of a row group
  • the size of a page
  • version of the parquet writer
  • compression
  • applying bloom filer on columns

Usage and Example

Options should be specified as a set of key value pairs inside the JSON file under the "options".

  "options": {
    "writerVersion": "1.0",
    "compression": "snappy",
    "rowGroupSize": "default",
    "pageSize": "default",
    "bloomFilter": "all"
  }
Clone this wiki locally