HuangZhenQiu commented on issue #19207:
URL: https://github.com/apache/hudi/issues/19207#issuecomment-4929701181
Added more debug log. It shows this function returns 8.
/**
* Given a partition path, obtain all filegroups within that. All methods,
that work at the partition level go through
* this.
*/
@Override
Stream<HoodieFileGroup> fetchAllStoredFileGroups(String partition) {
List<HoodieFileGroup> fileGroups =
partitionToFileGroupsMap.get(partition);
if (fileGroups == null || fileGroups.isEmpty()) {
return Stream.empty();
}
return new ArrayList<>(partitionToFileGroupsMap.get(partition)).stream();
}
--
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]