[format] Pass through parquet statistics and page-size-check config in RowDataParquetBuilder#7956
Merged
Merged
Conversation
…n RowDataParquetBuilder
Contributor
|
+1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Pass through parquet statistics and page-size-check configuration in
RowDataParquetBuilder.Currently
RowDataParquetBuilderdoes not forward the following Parquet config keys to the writer:parquet.statistics.truncate.lengthparquet.columnindex.truncate.lengthparquet.page.size.row.check.minparquet.page.size.row.check.maxWithout these, users cannot tune Parquet page-size checking behavior or control the truncation length of statistics and column indexes. This is especially relevant for tables with large records, where the default page-size check thresholds can lead to oversized pages.
Split out from #7621 per reviewer feedback, as this is an independent enhancement.
Changes
RowDataParquetBuilder: add.withMinRowCountForPageSizeCheck(),.withMaxRowCountForPageSizeCheck(),.withStatisticsTruncateLength(),.withColumnIndexTruncateLength()to the builder chain, reading from the existing HadoopConfigurationwith Parquet's default values as fallback.Tests
Existing Parquet write tests cover the default config path. The new keys follow the same pattern as other builder options (e.g.
withDictionaryPageSize,withPageSize) and use Parquet's built-in defaults when not set.API and Format
N/A — no public API or format changes. Users can now set these keys via table properties, using the same mechanism as other Parquet config keys.
Documentation
N/A