Is there a way to set the timestamp of the offset at which to start off at using Quarkus/Smallrye messaging?
Or to go back to any specific offset?
Is there a way to set the timestamp of the offset at which to start off at using Quarkus/Smallrye messaging?
Or to go back to any specific offset?
Offsets are stored in kafka, you can reset a topic like this:
kafka-consumer-groups --bootstrap-server <kafkahost:port> --group <group_id> --topic <topic_name> --reset-offsets --to-earliest --execute