I use the last version Kafka 1.1.0
Use command:
./kafka-consumer-groups.sh --bootstrap-server localhost:9093 --describe --group notifications-service-group
Then I try change offset for topic "notification", partition № 4:
./kafka-consumer-groups.sh --bootstrap-server localhost:9093 --group notifications-service-group --reset-offsets --topic notification:4 --to-offset 229400
and I see error:
WARN New offset (229400) is higher than latest offset for topic partition notification-4. Value will be set to 0 (kafka.admin.ConsumerGroupCommand$)
I try use any numbers from 1 to 229400 and get same error.
What means that error and how solve it?