Class TestSeekBeforeWithInlineBlocks

java.lang.Object
org.apache.hadoop.hbase.io.hfile.TestSeekBeforeWithInlineBlocks

  • Field Details

  • Constructor Details

  • Method Details

    • testMultiIndexLevelRandomHFileWithBlooms

      Scanner.seekBefore() could fail because when seeking to a previous HFile data block, it needs to know the size of that data block, which it calculates using current data block offset and the previous data block offset. This fails to work when there are leaf-level index blocks in the scannable section of the HFile, i.e. starting in HFileV2. This test will try seekBefore() on a flat (single-level) and multi-level (2,3) HFile and confirm this bug is now fixed. This bug also happens for inline Bloom blocks for the same reasons.
      Throws:
      IOException
    • checkSeekBefore

      private void checkSeekBefore(org.apache.hadoop.hbase.ExtendedCell[] cells, org.apache.hadoop.hbase.io.hfile.HFileScanner scanner, int i) throws IOException
      Throws:
      IOException
    • checkNoSeekBefore

      private void checkNoSeekBefore(org.apache.hadoop.hbase.ExtendedCell[] cells, org.apache.hadoop.hbase.io.hfile.HFileScanner scanner, int i) throws IOException
      Throws:
      IOException
    • checkCell

      private void checkCell(org.apache.hadoop.hbase.ExtendedCell expected, org.apache.hadoop.hbase.ExtendedCell actual)
      Check a key/value pair after it was read by the reader