Carl-Zhou-CN commented on code in PR #7871:
URL: https://github.com/apache/seatunnel/pull/7871#discussion_r1841828066
##########
seatunnel-connectors-v2/connector-kafka/src/main/java/org/apache/seatunnel/connectors/seatunnel/kafka/source/KafkaSourceSplitEnumerator.java:
##########
@@ -344,6 +351,11 @@ private static int getSplitOwner(TopicPartition tp, int
numReaders) {
private Map<TopicPartition, Long> listOffsets(
Collection<TopicPartition> partitions, OffsetSpec offsetSpec)
throws ExecutionException, InterruptedException {
+
+ if (isStreamingMode) {
+ return Collections.emptyMap();
+ }
Review Comment:
In batch processing mode, the last offset in the partition will be consumed
when reaching the slice.
--
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]