-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HDFS-15674. TestBPOfferService#testMissBlocksWhenReregister fails on trunk. #2467
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The failure could be reproduced within 10 tries on my local environment. I checked that pending IBRs are cleared before sending heartbeat in failed case by adding debug logging to |
|
💔 -1 overall
This message was automatically generated. |
|
Thanks @iwasakims for your works. +1 from my side. |
|
I merged this. Thanks, @Hexiaoqiao and @goiri . |
…trunk. (apache#2467) (cherry picked from commit 425996e)
https://issues.apache.org/jira/browse/HDFS-15674
The test intermittently fails if count of blocks reported by IBR does not reached to expected value(4000).
This waiting condition does not make sense because pending IBRs are possible to be deleted by
clearIBRs()inBPServiceActor#reRegister. It is ok because succeeding full block report covers them based on the discussion of HDFS-15113.The tests should check that all blocks are reported rather than counting number of reported blocks in FBR/IBR independently.