Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.18.4
-
None
-
Unknown
Description
Kafka enables idempotence on the producer by default but camel-kafka does not (see the first bullet point here). As far as I can tell, aligning the following props would fix this:
camel-kafka prop name | Kafka value | camel-kafka value |
---|---|---|
retries | MAX_INT | 0 |
enableIdempotence | true | false |
requestRequiredAcks | all | 1 |