nsivabalan commented on a change in pull request #4034:
URL: https://github.com/apache/hudi/pull/4034#discussion_r754817835
##########
File path:
hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/DeltaSync.java
##########
@@ -451,6 +457,18 @@ public void refreshTimeline() throws IOException {
return Pair.of(schemaProvider, Pair.of(checkpointStr, records));
}
+ private Option<String> getPreviousCheckpoint(HoodieTimeline timeline) throws
IOException {
+ List<HoodieInstant> instants =
timeline.getReverseOrderedInstants().collect(Collectors.toList());
+ for (HoodieInstant instant : instants) {
Review comment:
same response as ahove.
--
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]