Description and usage of CDD property "be.channel.kafka.auto.offset.reset"
Environment
All Operating Systems
Resolution
Kafka maintains an offset for each record in a partition for each connected client with a given group ID. The consumer position specifies the offset of the next message the client receives.
The CDD property "be.channel.kafka.auto.offset.reset" is applied only if the offset of the group ID of the Kafka input destination has not yet been initialized. You can check this with the following command.
earliest : Resets the offset to the earliest offset. All messages of the topic will be delivered and processed by the agent. latest (default) : Resets the offset to the latest offset. Only new messages are delivered and processed by the agent.
Issue/Introduction
CDD property - be.channel.kafka.auto.offset.reset, when applied and usage