leilinen commented on a change in pull request #650: Fix up offsets not
available on leader exception
URL: https://github.com/apache/incubator-hudi/pull/650#discussion_r279757920
##########
File path:
hoodie-utilities/src/main/java/com/uber/hoodie/utilities/sources/helpers/KafkaOffsetGen.java
##########
@@ -204,8 +204,10 @@ public KafkaOffsetGen(TypedProperties props) {
// Determine the offset ranges to read from
HashMap<TopicAndPartition, KafkaCluster.LeaderOffset> fromOffsets;
+ HashMap<TopicAndPartition, KafkaCluster.LeaderOffset> checkpointOffsets;
if (lastCheckpointStr.isPresent()) {
- fromOffsets = CheckpointUtils.strToOffsets(lastCheckpointStr.get());
+ checkpointOffsets =
CheckpointUtils.strToOffsets(lastCheckpointStr.get());
+ fromOffsets = checkupValidOffsets(cluster, checkpointOffsets,
topicPartitions);
Review comment:
Every time we get the checkpoint offset, we need to verify that it is valid.
Do you have a better way ?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services