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

TableNotFoundException should be thrown after removing stale znode in ETH

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 0.96.1, 0.94.14
    • 0.98.0, 0.94.16, 0.96.2, 0.99.0
    • master
    • None
    • Reviewed

    Description

      Lets suppose master went down while creating table then znode will be left in ENABLING state. Master to recover them on restart.
      If there are no meta entries for the table.
      While recovering the table we are checking whether table exists in meta or not, if not we are removing the znode. After removing znode we need to throw TableNotFoundException. Presently not throwing the exception so the znode will be recrated. It will be stale forever. Even on master restart we cannot delete. We cannot create the table with same name also.

            // Check if table exists
            if (!MetaReader.tableExists(catalogTracker, tableName)) {
              // retainAssignment is true only during recovery.  In normal case it is false
              if (!this.skipTableStateCheck) {
                throw new TableNotFoundException(tableName);
              } 
              try {
                this.assignmentManager.getZKTable().removeEnablingTable(tableName, true);
              } catch (KeeperException e) {
                // TODO : Use HBCK to clear such nodes
                LOG.warn("Failed to delete the ENABLING node for the table " + tableName
                    + ".  The table will remain unusable. Run HBCK to manually fix the problem.");
              }
            }
      

      Attachments

        1. HBASE-10215.patch
          4 kB
          rajeshbabu
        2. HBASE-10215_v2.patch
          4 kB
          rajeshbabu
        3. HBASE-10215_v2.patch
          4 kB
          rajeshbabu
        4. HBASE-10215_94.patch
          3 kB
          rajeshbabu

        Activity

          People

            rajesh23 rajeshbabu
            rajesh23 rajeshbabu
            Votes:
            0 Vote for this issue
            Watchers:
            6 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: