Hello. Is it possible to reset Kafka consumer offsets using Lenses?
Yes, you can. You need to stop the application because Kafka only allows editing offsets with an inactive consumer group. After stopping the application, go to the consumer page, check the inactive button, and select the consumer group you want to edit up to a specific offset or time. Ensure there aren’t multiple instances of the application running, as stopping one instance might still leave others running, which could interfere with editing the offsets.
Cheers!