Uh oh!
There was an error while loading. Please reload this page.
HBASE-22806 Recreating a deleted column family brings back the delete… - #530
Conversation
Apache-HBase
commented
Aug 23, 2019
💔 -1 overall
This message was automatically generated. |
saintstack
left a comment
There was a problem hiding this comment.
I like the tests. Can you say how it fixes the problem Pankaj? I like how straightforward this is.
Apache-HBase
commented
Aug 23, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 24, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 24, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 24, 2019
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 24, 2019
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 24, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 24, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 24, 2019
🎊 +1 overall
This message was automatically generated. |
pankaj72981
commented
Aug 24, 2019
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. |
Apache-HBase
commented
Aug 24, 2019
💔 -1 overall
This message was automatically generated. |
saintstack
left a comment
There was a problem hiding this comment.
Ok. I get it now. I re-read your comment up in the JIRA. Let me merge.
…d cells (#530) Signed-off-by: stack <stack@apache.org>
…d cells (#530) Signed-off-by: stack <stack@apache.org>
…d cells (#530) Signed-off-by: stack <stack@apache.org>
pankaj72981
commented
Aug 25, 2019
Thanks Stack Sir. 👍 |
…d cells (apache#530) Signed-off-by: stack <stack@apache.org>
…d cells (apache#530) Signed-off-by: stack <stack@apache.org> (cherry picked from commit b55b676) Change-Id: Ieebc5ba5f3f12473526cce215e274fb6e13b10d4
Deleted CF dirs should be cleared after region reopen.