-
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-22806 Recreating a deleted column family brings back the delete… #530
Conversation
💔 -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.
I like the tests. Can you say how it fixes the problem Pankaj? I like how straightforward this is.
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
Thanks Stack sir for looking into this. As I mentioned earlier, During region close (reopen region close the region first and then open) memstore content will be flushed to FS, at RS side we dont have CF existence validation. So CF dir will be recreated with the HFile. Moving MODIFY_TABLE_REOPEN_ALL_REGIONS state before MODIFY_TABLE_DELETE_FS_LAYOUT will solve the problem. |
💔 -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.
Ok. I get it now. I re-read your comment up in the JIRA. Let me merge.
…d cells (#530) Signed-off-by: stack <[email protected]>
…d cells (#530) Signed-off-by: stack <[email protected]>
…d cells (#530) Signed-off-by: stack <[email protected]>
Thanks Stack Sir. 👍 |
…d cells (apache#530) Signed-off-by: stack <[email protected]>
…d cells (apache#530) Signed-off-by: stack <[email protected]> (cherry picked from commit b55b676) Change-Id: Ieebc5ba5f3f12473526cce215e274fb6e13b10d4
Deleted CF dirs should be cleared after region reopen.