-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
HBASE-22807 HBCK Report showed wrong orphans regions on FileSystem #461
Conversation
💔 -1 overall
This message was automatically generated. |
HbckRegionInfo hri = regionInfoMap.get(encodedRegionName); | ||
if (hri == null) { | ||
orphanRegionsOnFS.add(encodedRegionName); | ||
continue; | ||
} | ||
HbckRegionInfo.HdfsEntry hdfsEntry = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now that we aren't using this constructor anymore, do we need to still keep that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me try it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay the fs.listStatus(tableDir.getPath()) lists .tmp & .tabledesc. Have verified that the added UT fails without the fix. A small nit.
💔 -1 overall
This message was automatically generated. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay the fs.listStatus(tableDir.getPath()) lists .tmp & .tabledesc. Have verified that the added UT fails without the fix. A small nit.
💔 -1 overall
This message was automatically generated. |
Yes. Thanks for the verify. |
💔 -1 overall
This message was automatically generated. |
…pache#461) Signed-off-by: Sakthi <sakthi@apache.org>
…pache#461) Signed-off-by: Sakthi <sakthi@apache.org> (cherry picked from commit 6ec251c) Change-Id: I7c629180bf99058afa5d59bce3e6bfb77ee9cfee
No description provided.