stevenzwu commented on a change in pull request #3181:
URL: https://github.com/apache/iceberg/pull/3181#discussion_r719040988
##########
File path: parquet/src/main/java/org/apache/iceberg/parquet/Parquet.java
##########
@@ -316,7 +331,13 @@ static Context dataContext(Map<String, String> config) {
String compressionLevel =
config.getOrDefault(PARQUET_COMPRESSION_LEVEL,
PARQUET_COMPRESSION_LEVEL_DEFAULT);
- return new Context(rowGroupSize, pageSize, dictionaryPageSize, codec,
compressionLevel);
+ int rowGroupCheckMinRecordCount = Integer.parseInt(config.getOrDefault(
Review comment:
Originally, I was trying to stay with the existing code/style in this
class. In the new commit, I have updated `Integer.partInt` to
`PropertyUtil.propertyAsInt` for all integer configs (old or new)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]