You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’ve encountered an issue where, after writing messages to a Kafka topic with a single partition, the offsets increment by 2 instead of the expected increment of 1. For example, the sequence of offsets is 0, 2, 4, etc.
Is this normal ?
Thanks for filing this concern with us, @vcanuel.
Although this might be asking a lot, I am going to regardless: would you mind trying to reproduce this offset-issue with the example present in this repository?
The example resides in the "kafka-axon-example" folder, by the way.
Sharing a reproducible will help us quite a bit to ensure nothing gets lost in translation.
Description:
Hi,
I’ve encountered an issue where, after writing messages to a Kafka topic with a single partition, the offsets increment by 2 instead of the expected increment of 1. For example, the sequence of offsets is 0, 2, 4, etc.
Is this normal ?
Basic information
Axon Framework version: 4.10.2
JDK version: 21
Kafka Extension version: 4.10.0
My application properties :
Steps to Reproduce:
Expected Behavior:
Offsets should increment by 1 for each new message (e.g., 0, 1, 2, 3, …).
Actual Behavior:
Offsets increment by 2 for each new message (e.g., 0, 2, 4, …).
The text was updated successfully, but these errors were encountered: