Ok here is one weird issue that I am facing. I am trying to reset the topic for a consumer group. This is what I used.
./kafka-consumer-groups.sh --bootstrap-server 127.0.0.1:32400 --group group-tango --reset-offsets --to-earliest --topic topic-tango --execute
and the result that I got was.
group-tango topic-tango 3 0
group-tango topic-tango 0 0
group-tango topic-tango 1 0
group-tango topic-tango 5 0
group-tango topic-tango 4 0
group-tango topic-tango 2 0```
However, when I do
`./kafka-consumer-groups.sh --describe --bootstrap-server 127.0.0.1:32400 --group group-tango`
I am getting this.
```GROUP TOPIC PARTITION CURRENT-OFFSET LOG-END-OFFSET LAG CONSUMER-ID HOST CLIENT-ID
group-tango topic-tango 1 2 5 3 - - - ```
As you see offset reset is not working. Is there anyway to fix this.