Uh oh!
There was an error while loading. Please reload this page.
HBASE-22835 Scan/Get with setColumn and the store with ROWCOL bloom f… - #484
Conversation
…ilter could throw AssertionError (backport of HBASE-19863)
Apache-HBase
commented
Aug 13, 2019
💔 -1 overall
This message was automatically generated. |
…ilter could throw AssertionError (backport of HBASE-19863) + checkstyle adapted.
Apache-HBase
commented
Aug 14, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 14, 2019
💔 -1 overall
This message was automatically generated. |
…ilter could throw AssertionError (backport of HBASE-19863) + checkstyle adapted.
Apache-HBase
commented
Aug 14, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 14, 2019
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 15, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 15, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 15, 2019
💔 -1 overall
This message was automatically generated. |
Backport HBASE-19863? First skimmed(not in detailed), looks like they are quite different? |
@Reidddddd So, yeah. My first description was not updated property. |
Apache-HBase
commented
Aug 20, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 21, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 21, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 22, 2019
💔 -1 overall
This message was automatically generated. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
…ilter could throw AssertionError (backport of HBASE-19863) + add a line at the end of file
Reidddddd
commented
Aug 22, 2019
LGTM. |
Apache-HBase
commented
Aug 22, 2019
💔 -1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 22, 2019
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Aug 23, 2019
💔 -1 overall
This message was automatically generated. |
HBASE-22835 Scan/Get with setColumn and the store with ROWCOL bloom filter could throw AssertionError (backport of HBASE-19863)
Scan/Get with setColumn and the store with ROWCOL bloom filter could throw AssertionError of scan order check.
which is resolved by HBASE-19863 for 1.4, 2.x, or later version.
A same bug exists in branch 1.3 and older, and also my cluster suffered from the same problem.
When ROWCOL bloomFilter is enabled and fake cell is the prevCell,
actual hfs offset can be behind, in this case heap.next() is not enough. it requires reseek to find right next cell.
I created a backport patch of HBASE-19863and a part of HBASE-17958.
Exact same testcase included. And changed StoreScanner due to the difference of codes.