Specifying Options of the File - Altinity/parquet-regression GitHub Wiki

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"
  }