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

Ineffective handling of FileNotFoundException in FileLink$FileLinkInputStream.tryOpen()

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 1.5.0, 2.0.0-alpha-2, 2.0.0
    • None
    • None
    • Reviewed

    Description

      Found the following in region server log:

      2017-07-03 11:22:04,669 WARN  [regionserver/a.b.c.d:16020-shortCompactions-1499094046361] retry.RetryInvocationHandler: Exception while       invoking ClientNamenodeProtocolTranslatorPB.getBlockLocations over e.f.g.h:8020. Not retrying because try once and fail.
      org.apache.hadoop.ipc.RemoteException(java.io.FileNotFoundException): File does not exist: /hbase/data/default/X/4d61af9d1cbcc5fe2a5cbddbfc92fe7e/ K/47222a9cbd294f499f49de92ecf330ee
        at org.apache.hadoop.hdfs.server.namenode.INodeFile.valueOf(INodeFile.java:71)
        at org.apache.hadoop.hdfs.server.namenode.INodeFile.valueOf(INodeFile.java:61)
      ...
        at org.apache.hadoop.hbase.io.FileLink$FileLinkInputStream.tryOpen(FileLink.java:291)
        at org.apache.hadoop.hbase.io.FileLink$FileLinkInputStream.<init>(FileLink.java:122)
        at org.apache.hadoop.hbase.io.FileLink$FileLinkInputStream.<init>(FileLink.java:113)
        at org.apache.hadoop.hbase.io.FileLink.open(FileLink.java:404)
        at org.apache.hadoop.hbase.io.FSDataInputStreamWrapper.<init>(FSDataInputStreamWrapper.java:98)
        at org.apache.hadoop.hbase.io.FSDataInputStreamWrapper.<init>(FSDataInputStreamWrapper.java:83)
      

      Here is related code:

          private FSDataInputStream tryOpen() throws IOException {
            for (Path path: fileLink.getLocations()) {
      ...
              } catch (FileNotFoundException e) {
                // Try another file location
              }
      

      The intention is to try possible locations for the linked file.
      However, RemoteException was the exception encountered. This makes the above catch clause ineffective.

      Attachments

        1. 18312.v1.txt
          1 kB
          Ted Yu
        2. 18312.v2.txt
          1 kB
          Ted Yu
        3. 18312.v4.txt
          3 kB
          Ted Yu
        4. 18312.v5.txt
          3 kB
          Ted Yu
        5. 18312.v6.txt
          3 kB
          Ted Yu

        Activity

          People

            yuzhihong@gmail.com Ted Yu
            yuzhihong@gmail.com Ted Yu
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: