0

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?

user432024
  • 4,392
  • 8
  • 49
  • 85

1 Answers1

0

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
Tea Curran
  • 2,923
  • 2
  • 18
  • 22