leilinen commented on a change in pull request #650: HUDI-105 : Fix up offsets
not available on leader exception
URL: https://github.com/apache/incubator-hudi/pull/650#discussion_r280643911
##########
File path:
hoodie-utilities/src/main/java/com/uber/hoodie/utilities/sources/helpers/KafkaOffsetGen.java
##########
@@ -235,6 +237,30 @@ public KafkaOffsetGen(TypedProperties props) {
return offsetRanges;
}
+ /***
+ * check up checkpoint offsets is valid or not, if true, return checkpoint
offsets, else return earliest offsets
+ * @param cluster,
+ * @param checkpointOffsets
+ * @param topicPartitions
+ * @return fromOffset
+ */
+ private HashMap<TopicAndPartition, KafkaCluster.LeaderOffset>
checkupValidOffsets(KafkaCluster cluster,
+
HashMap<TopicAndPartition, KafkaCluster.LeaderOffset> checkpointOffsets,
+
Set<TopicAndPartition> topicPartitions ) {
+ java.util.Set<TopicAndPartition> partitions = checkpointOffsets.keySet();
Review comment:
in this class, it has imported ```scala.collection.immutable.Set``` and
cannot ```import java.util.Set``` at the top of file.
----------------------------------------------------------------
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