Uploaded image for project: 'HBase'
  1. HBase
  2. HBASE-11660

Make WAL reader follow contract for java.io.InputStream.available()

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Abandoned
    • 0.99.0, 0.98.6, 2.0.0
    • None
    • wal
    • None

    Description

      In the process of building support to running HBase on Microsoft Azure HDInsight, I hit an issue in the HBase WAL reading process that took a lot of time to debug. The WAL reading code depends on available() for the log InputStream never returing 0 until end of file. This is not the same as the contract in java.io.InputStream for available.

      To prevent future grief for others that may want to port HBase onto storage systems other than HDFS, I propose to change the HBase WAL reader so it does not assume that EOF has been reached when available() == 0. It instead would treat available only as described in InputStream, i.e. available() is merely the number of bytes that could be read from the stream without blocking. That could be 0 even before EOF.

      Attachments

        1. hbase-11660.01.patch
          0.7 kB
          Eric N. Hanson

        Activity

          People

            Unassigned Unassigned
            ehans Eric N. Hanson
            Votes:
            0 Vote for this issue
            Watchers:
            11 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: