ParquetWriteSettings Class
Parquet write settings.
Constructor
ParquetWriteSettings(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
max_rows_per_file
|
Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer). |
|
file_name_prefix
|
Specifies the file name pattern <fileNamePrefix>_<fileIndex>.<fileExtension> when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string). |
|
type
|
The write setting type. Required. Default value is "ParquetWriteSettings". |
Attributes
file_name_prefix
Specifies the file name pattern <fileNamePrefix>_<fileIndex>.<fileExtension> when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
file_name_prefix: Any | None
max_rows_per_file
Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
max_rows_per_file: Any | None
type
The write setting type. Required. Default value is "ParquetWriteSettings".
type: Literal['ParquetWriteSettings']