I\'m trying to reset consumer offset with latest CLI tools for Kafka.
kafka-consumer-groups.bat --bootstrap-server kafka-host:9092 --group my-group --reset-o
By default, --reset-offsets just prints the result of the operation. To actually perform the operation you need to add --execute to your command:
--reset-offsets
--execute
kafka-consumer-groups.bat --bootstrap-server kafka-host:9092 --group my-group --reset-offsets --to-earliest --all-topics --execute