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

HLogSplitter renaming recovered.edits and CJ removing the parent directory race, making the HBCK think cluster is inconsistent.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 0.92.1, 0.94.0
    • 0.94.1, 0.95.0
    • None
    • None
    • Reviewed

    Description

      The scenario is like this
      -> A region is getting splitted.
      -> The master is still not processed the split .
      -> Region server goes down.
      -> Split log manager starts splitting the logs and creates the recovered.edits in the splitlog path.
      -> CJ starts and deletes the entry from META and also just completes the deletion of the region dir.
      -> in hlogSplitter on final step we rename the recovered.edits to come under the regiondir.
      There if the regiondir doesnot exist we tend to create and then add the recovered.edits.

      Because of this HBCK thinks it to be an orphan region because we have the regiondir but with no regioninfo.
      Ideally cluster is fine but we it is misleading.

              } else {
                Path dstdir = dst.getParent();
                if (!fs.exists(dstdir)) {
                  if (!fs.mkdirs(dstdir)) LOG.warn("mkdir failed on " + dstdir);
                }
              }
              fs.rename(src, dst);
              LOG.debug(" moved " + src + " => " + dst);
            } else {
              LOG.debug("Could not move recovered edits from " + src +
                  " as it doesn't exist");
            }
          }
          archiveLogs(null, corruptedLogs, processedLogs,
              oldLogDir, fs, conf);
      

      Attachments

        1. HBASE-6050.patch
          0.9 kB
          ramkrishna.s.vasudevan

        Activity

          People

            ram_krish ramkrishna.s.vasudevan
            ram_krish ramkrishna.s.vasudevan
            Votes:
            0 Vote for this issue
            Watchers:
            7 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: