jshmchenxi commented on a change in pull request #2642:
URL: https://github.com/apache/iceberg/pull/2642#discussion_r802318164
##########
File path: parquet/src/main/java/org/apache/iceberg/parquet/Parquet.java
##########
@@ -259,17 +271,31 @@ private WriteBuilder
createContextFunc(Function<Map<String, String>, Context> ne
conf.set(entry.getKey(), entry.getValue());
}
- ParquetProperties parquetProperties = ParquetProperties.builder()
+ ParquetProperties.Builder propsBuilder = ParquetProperties.builder()
.withWriterVersion(writerVersion)
.withPageSize(pageSize)
.withDictionaryPageSize(dictionaryPageSize)
- .build();
+ .withMaxBloomFilterBytes(bloomFilterMaxBytes)
+ .withBloomFilterEnabled(bloomFilterEnabled);
+
+ new ColumnConfigParser()
Review comment:
This ColumnConfigParser instance is created to parse the config and
apply to propsBuilder
--
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]