-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Labels
Description
Describe the bug
When the http.timer.interval.millis value is lower than the offset.flush.interval.ms kafka connect worker setting, the records in topic are duplicated every http.timer.interval.millis until offset is commited.
To Reproduce
Set http.timer.interval.millis connector config to 1000 ms.
Use default http.timer.interval.millis worker setting of 60000 ms.
Expected behavior
Records should appear once in the target topic.
For the poll, the offset from the last committed record should be used.
Updating the offset value should be done at the start of each poll instead of during commit.
Kafka Connect:
- Version 3.4.0
Plugin:
- Version 0.8.11
Additional context
Add any other context about the problem here.
Reactions are currently unavailable