cuibo01 commented on a change in pull request #4837:
URL: https://github.com/apache/hudi/pull/4837#discussion_r810435202
##########
File path:
hudi-flink/src/main/java/org/apache/hudi/sink/bootstrap/BootstrapOperator.java
##########
@@ -211,16 +213,29 @@ protected void loadRecords(String partitionPath) throws
Exception {
return;
}
- final List<HoodieKey> hoodieKeys;
- try {
- hoodieKeys =
- fileUtils.fetchRecordKeyPartitionPath(this.hadoopConf, new
Path(baseFile.getPath()));
- } catch (Exception e) {
- throw new HoodieException(String.format("Error when loading record
keys from file: %s", baseFile), e);
- }
-
- for (HoodieKey hoodieKey : hoodieKeys) {
- output.collect(new StreamRecord(new
IndexRecord(generateHoodieRecord(hoodieKey, fileSlice))));
+ if (this.batchSize > 0) {
+ List<HoodieKey> hoodieKeys;
+ Path filePath = new Path(baseFile.getPath());
+ try (BaseFileUtils.BaseFileReader reader =
fileUtils.getReader(this.hadoopConf, filePath)) {
+ do {
+ hoodieKeys = fileUtils.fetchRecordKeyPartitionPath(reader,
filePath, batchSize);
Review comment:
Modify to ClosableIterator
--
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]