-
Notifications
You must be signed in to change notification settings - Fork 0
Specifying Options of the File
Selfeer edited this page Nov 12, 2024
·
1 revision
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
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"
}
Developed and maintained by the Altinity team.
- Home
- Parquet File Name
- Options of the File
- File Compression
- Writer Version
- Row and Page Size
- Bloom Filter
- Configure with Hadoop
- Integer Columns
- Unsigned Integer Columns
- UTF8 Columns
- Decimal Columns
- Date Columns
- Time and Timestamp Columns
- JSON and BSON Columns
- String Columns
- Enum Columns
- UUID Columns
- Float16 Column
- Array Columns
- Nested Array Columns
- Tuple Columns
- Nested Tuple Columns
- Schema Types
- Encodings
- File Encryption
- Extra Metadata Entries