I would like to take advantage of the idempotent producers introduced in Kafka 0.11. According to this Confluent blog post a new property was added to support this:
Idempotence: Exactly-once in order semantics per partition
To turn on this feature and get exactly-once semantics per partition—meaning no duplicates, no data loss, and in-order semantics—configure your producer to set “enable.idempotence=true”.
The point is neither Spring Cloud Stream nor Spring Kafka document the use of that property. How can we configure it in Spring Cloud Stream applications?