-
Notifications
You must be signed in to change notification settings - Fork 438
Description
BUG REPORT
-
Please describe the issue you observed:
-
What did you do (The steps to reproduce)?
Client consumes message form slave broker. When commitLog was removed, It will returnResPullRetryImmediatelyand suggest client pull form master to correct the request offset. But client still pulls from slave and offset is not changed. -
What did you expect to see?
The request offset should be min offset of queue. -
What did you see instead?
The request offset is not changed.
-
-
Please tell us about your environment:
-
What is your OS?
-
What is your client version?
-
What is your RocketMQ version?
-
-
Other information (e.g. detailed explanation, logs, related issues, suggestions on how to fix, etc):
In java client will update the request node firstly.

But client only updates request node when pullFound in go.

So if the pull request returns PullNoMsgMatched , client will not request master to update offset.