jonvex commented on code in PR #9743:
URL: https://github.com/apache/hudi/pull/9743#discussion_r1361254056
##########
hudi-common/src/main/java/org/apache/hudi/io/storage/HoodieAvroParquetReader.java:
##########
@@ -165,7 +165,10 @@ private ClosableIterator<IndexedRecord>
getIndexedRecordIteratorInternal(Schema
AvroReadSupport.setAvroReadSchema(conf, requestedSchema.get());
AvroReadSupport.setRequestedProjection(conf, requestedSchema.get());
}
- ParquetReader<IndexedRecord> reader = new
HoodieAvroParquetReaderBuilder<IndexedRecord>(path).withConf(conf).build();
+ ParquetReader<IndexedRecord> reader = new
HoodieAvroParquetReaderBuilder<IndexedRecord>(path).withConf(conf)
+ .set(ParquetInputFormat.STRICT_TYPE_CHECKING, "false")
+ .set(AvroSchemaConverter.ADD_LIST_ELEMENT_RECORDS, "false")
Review Comment:
Going to add a jira and remove from this pr
--
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]