voonhous commented on code in PR #19687:
URL: https://github.com/apache/hudi/pull/19687#discussion_r3850688253
##########
hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/HoodieParquetInputFormat.java:
##########
@@ -151,7 +163,11 @@ public RecordReader<NullWritable, ArrayWritable>
getRecordReader(final InputSpli
// ParquetInputFormat.setFilterPredicate(job, predicate);
// clearOutExistingPredicate(job);
// }
+ // From here on the split is read by Hive's plain parquet reader, which
the file-group-reader
+ // guard in HiveHoodieReaderContext never sees; repeat the
shredded-variant fail-fast for it.
+ validateNoShreddedVariantRead(split, job);
Review Comment:
Moved the plain call below the bootstrap branch, so a bootstrap split is
guarded on its bootstrap half only. Added a bootstrap leg
(`BootstrapBaseFileSplit` through `getRecordReader`) to the input-format test.
--
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]